.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "gallery/example_oilspill_seafloor_biodegradation.py" .. LINE NUMBERS ARE GIVEN BELOW. .. only:: html .. note:: :class: sphx-glr-download-link-note :ref:`Go to the end ` to download the full example code .. rst-class:: sphx-glr-example-title .. _sphx_glr_gallery_example_oilspill_seafloor_biodegradation.py: Biodegradation of oil at depth ============================== .. GENERATED FROM PYTHON SOURCE LINES 6-15 .. code-block:: Python 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() .. rst-class:: sphx-glr-script-out .. code-block:: none 14:42:41 DEBUG opendrift.config:161: Adding 16 config items from __init__ 14:42:41 DEBUG opendrift.config:171: Overwriting config item readers:max_number_of_fails 14:42:41 DEBUG opendrift.config:161: Adding 6 config items from __init__ 14:42:41 INFO opendrift.models.basemodel:533: OpenDriftSimulation initialised (version 1.11.2 / v1.11.2-37-g34f6117) 14:42:41 DEBUG opendrift.config:161: Adding 15 config items from oceandrift 14:42:41 DEBUG opendrift.config:171: Overwriting config item seed:z 14:42:41 DEBUG opendrift.config:161: Adding 15 config items from openoil .. GENERATED FROM PYTHON SOURCE LINES 16-17 Current from HYCOM and wind from NCEP GFS .. GENERATED FROM PYTHON SOURCE LINES 17-23 .. code-block:: Python o.add_readers_from_list([ 'https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z', '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}) .. rst-class:: sphx-glr-script-out .. code-block:: none 14:42:41 DEBUG opendrift.readers.reader_lazy:38: Delaying initialisation of LazyReader: https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:42:41 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 14:42:41 DEBUG opendrift.models.basemodel.environment:328: Added reader LazyReader: https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:42:41 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 14:42:41 INFO opendrift.config:66: set_config('drift:current_uncertainty', 0) 14:42:41 INFO opendrift.config:66: set_config('drift:wind_uncertainty', 0) 14:42:41 INFO opendrift.config:66: set_config('drift:horizontal_diffusivity', 20) .. GENERATED FROM PYTHON SOURCE LINES 24-25 Configuration .. GENERATED FROM PYTHON SOURCE LINES 25-31 .. code-block:: Python 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') .. GENERATED FROM PYTHON SOURCE LINES 32-33 Fast decay for droplets, and slow decay for slick .. GENERATED FROM PYTHON SOURCE LINES 33-37 .. code-block:: Python 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 .. GENERATED FROM PYTHON SOURCE LINES 38-39 Seed oil at surface and at 150m depth .. GENERATED FROM PYTHON SOURCE LINES 39-45 .. code-block:: Python 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) .. rst-class:: sphx-glr-script-out .. code-block:: none 14:42:41 INFO opendrift.models.openoil.openoil:1638: Droplet diameter is provided, and will be kept constant during simulation 14:42:41 INFO opendrift.models.openoil.adios.dirjs:90: Querying ADIOS database for oil: GENERIC MEDIUM CRUDE 14:42:41 DEBUG opendrift.models.openoil.adios.oil:76: Parsing Oil: AD04001 / GENERIC MEDIUM CRUDE 14:42:41 INFO opendrift.models.openoil.openoil:1719: Using density 880.4 and viscosity 2.230881193744365e-05 of oiltype GENERIC MEDIUM CRUDE 14:42:41 DEBUG opendrift.readers.basereader:176: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated 14:42:41 DEBUG opendrift.models.basemodel.environment:328: Added reader constant_reader 14:42:41 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... 14:42:41 DEBUG opendrift.readers.basereader:176: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated 14:42:47 DEBUG opendrift.models.basemodel.environment:328: Added reader global_landmask 14:42:47 INFO opendrift.models.basemodel.environment:245: Fallback values will be used for the following variables which have no readers: 14:42:47 INFO opendrift.models.basemodel.environment:248: sea_surface_height: 0.000000 14:42:47 INFO opendrift.models.basemodel.environment:248: upward_sea_water_velocity: 0.000000 14:42:47 INFO opendrift.models.basemodel.environment:248: sea_surface_wave_significant_height: 0.000000 14:42:47 INFO opendrift.models.basemodel.environment:248: sea_surface_wave_stokes_drift_x_velocity: 0.000000 14:42:47 INFO opendrift.models.basemodel.environment:248: sea_surface_wave_stokes_drift_y_velocity: 0.000000 14:42:47 INFO opendrift.models.basemodel.environment:248: sea_surface_wave_period_at_variance_spectral_density_maximum: 0.000000 14:42:47 INFO opendrift.models.basemodel.environment:248: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0.000000 14:42:47 INFO opendrift.models.basemodel.environment:248: sea_ice_area_fraction: 0.000000 14:42:47 INFO opendrift.models.basemodel.environment:248: sea_ice_x_velocity: 0.000000 14:42:47 INFO opendrift.models.basemodel.environment:248: sea_ice_y_velocity: 0.000000 14:42:47 INFO opendrift.models.basemodel.environment:248: sea_water_temperature: 10.000000 14:42:47 INFO opendrift.models.basemodel.environment:248: sea_water_salinity: 34.000000 14:42:47 INFO opendrift.models.basemodel.environment:248: sea_floor_depth_below_sea_level: 10000.000000 14:42:47 INFO opendrift.models.basemodel.environment:248: ocean_vertical_diffusivity: 0.020000 14:42:47 DEBUG opendrift.models.basemodel:92: Changed mode from Mode.Config to Mode.Ready 14:42:47 INFO opendrift.models.openoil.openoil:1638: Droplet diameter is provided, and will be kept constant during simulation 14:42:47 INFO opendrift.models.openoil.adios.dirjs:90: Querying ADIOS database for oil: GENERIC MEDIUM CRUDE 14:42:47 DEBUG opendrift.models.openoil.adios.oil:76: Parsing Oil: AD04001 / GENERIC MEDIUM CRUDE 14:42:47 INFO opendrift.models.openoil.openoil:1719: Using density 880.4 and viscosity 2.230881193744365e-05 of oiltype GENERIC MEDIUM CRUDE .. GENERATED FROM PYTHON SOURCE LINES 46-47 Running model .. GENERATED FROM PYTHON SOURCE LINES 47-49 .. code-block:: Python o.run(duration=timedelta(days=5), time_step=3600, outfile='oil.nc') .. rst-class:: sphx-glr-script-out .. code-block:: none 14:42:47 DEBUG opendrift.models.basemodel:92: Changed mode from Mode.Ready to Mode.Run 14:42:47 DEBUG opendrift.models.basemodel:1751: ------------------------------------------------------ Software and hardware: OpenDrift version 1.11.2 Platform: Linux, 5.15.0-1056-aws 68.5677490234375 GB memory 36 processors (x86_64) NumPy version 1.26.4 SciPy version 1.13.0 Matplotlib version 3.8.4 NetCDF4 version 1.6.1 Xarray version 2024.3.0 Python version 3.11.6 | packaged by conda-forge | (main, Oct 3 2023, 10:40:35) [GCC 12.3.0] ------------------------------------------------------ 14:42:47 DEBUG opendrift.models.basemodel:1883: Finalizing environment and preparing readers for simulation coverage ([17.320116865357402, 29.937168348157726, 29.680066240111348, 40.06288505760399]) and time (2024-04-21 14:42:41.057477 to 2024-04-26 14:42:41.057477) 14:42:47 DEBUG opendrift.models.basemodel.environment:180: Preparing LazyReader: https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z for extent [17.320116865357402, 29.937168348157726, 29.680066240111348, 40.06288505760399] 14:42:47 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] 14:42:47 DEBUG opendrift.models.basemodel.environment:180: Preparing constant_reader for extent [17.320116865357402, 29.937168348157726, 29.680066240111348, 40.06288505760399] 14:42:47 DEBUG opendrift.readers.basereader.variables:549: Nothing more to prepare for constant_reader 14:42:47 DEBUG opendrift.models.basemodel.environment:180: Preparing global_landmask for extent [17.320116865357402, 29.937168348157726, 29.680066240111348, 40.06288505760399] 14:42:47 DEBUG opendrift.readers.basereader.variables:549: Nothing more to prepare for global_landmask 14:42:48 INFO opendrift.models.basemodel:911: Using existing reader for land_binary_mask 14:42:48 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:42:48 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:42:48 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:42:48 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:42:48 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:42:48 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:42:48 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements 14:42:48 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:42:48 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:42:48 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:42:48 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:42:48 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:42:48 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:42:48 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:42:48 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:42:48 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:42:48 INFO opendrift.models.basemodel:922: All points are in ocean 14:42:48 INFO opendrift.models.openoil.openoil:687: Oil-water surface tension is 0.031402 Nm 14:42:48 INFO opendrift.models.openoil.openoil:700: Max water fraction not available for GENERIC MEDIUM CRUDE, using default 14:42:48 DEBUG opendrift.models.basemodel:866: to be seeded: 6000, already seeded 0 14:42:48 DEBUG opendrift.models.basemodel:884: Released 6000 new elements. 14:42:48 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:42:48 INFO opendrift.models.basemodel:2011: 2024-04-21 14:42:41.057477 - step 1 of 120 - 6000 active elements (0 deactivated) 14:42:48 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:42:48 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:42:48 DEBUG opendrift.models.basemodel:2030: 34.996628 <- latitude -> 35.003426 14:42:48 DEBUG opendrift.models.basemodel:2035: 23.496576 <- longitude -> 23.503607 14:42:48 DEBUG opendrift.models.basemodel:2040: -150.0 <- z -> 0.0 14:42:48 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:42:48 DEBUG opendrift.models.basemodel.environment:581: Variables not covered by any reader: ['x_wind', 'sea_surface_height', 'y_sea_water_velocity', 'sea_water_temperature', 'y_wind', 'sea_floor_depth_below_sea_level', 'sea_water_salinity', 'x_sea_water_velocity'] 14:42:48 DEBUG opendrift.readers.reader_lazy:57: Initialising: LazyReader: https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:42:48 INFO opendrift.readers.reader_netCDF_CF_generic:102: Opening dataset: https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:42:48 DEBUG opendrift.readers.reader_netCDF_CF_generic:119: Finding coordinate variables. 14:42:48 INFO opendrift.readers.reader_netCDF_CF_generic:281: Grid coordinates are detected, but proj4 string not given: assuming latlong 14:42:48 INFO opendrift.readers.reader_netCDF_CF_generic:314: Detected dimensions: {'z': 'depth', 'y': 'lat', 'x': 'lon', 'time': 'time'} 14:42:48 DEBUG opendrift.readers.basereader.variables:608: Setting buffer size 9 for reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z, assuming a maximum average speed of 5 m/s and time span of 3:00:00 14:42:48 INFO opendrift.readers.basereader:166: Variable x_sea_water_velocity will be rotated from eastward_sea_water_velocity 14:42:48 INFO opendrift.readers.basereader:166: Variable y_sea_water_velocity will be rotated from northward_sea_water_velocity 14:42:48 DEBUG opendrift.readers.basereader:176: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated 14:42:48 DEBUG opendrift.readers.basereader.variables:563: Adding variable mapping: ['x_sea_water_velocity', 'y_sea_water_velocity'] -> sea_water_speed 14:42:48 DEBUG opendrift.readers.basereader.structured:153: Clearing cache for reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z before starting new simulation 14:42:48 DEBUG opendrift.readers.basereader.variables:608: Setting buffer size 4 for reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z, assuming a maximum average speed of 1.3 m/s and time span of 3:00:00 14:42:48 DEBUG opendrift.readers.basereader.variables:549: Nothing more to prepare for https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:42:48 DEBUG opendrift.readers.reader_lazy:72: Reader initialised: https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:42:48 DEBUG opendrift.readers.basereader.variables:608: Setting buffer size 4 for reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z, assuming a maximum average speed of 1.3 m/s and time span of 3:00:00 14:42:48 DEBUG opendrift.readers.reader_lazy:57: Initialising: LazyReader: https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd 14:42:49 INFO opendrift.readers.reader_netCDF_CF_generic:102: Opening dataset: https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd 14:42:50 DEBUG opendrift.readers.reader_netCDF_CF_generic:119: Finding coordinate variables. 14:42:50 DEBUG opendrift.readers.reader_netCDF_CF_generic:258: Lon and lat are 1D arrays - using as projection coordinates 14:42:50 INFO opendrift.readers.reader_netCDF_CF_generic:314: Detected dimensions: {'time': 'time', 'x': 'longitude', 'y': 'latitude'} 14:42:50 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 14:42:50 INFO opendrift.readers.basereader:166: Variable x_wind will be rotated from eastward_wind 14:42:50 INFO opendrift.readers.basereader:166: Variable y_wind will be rotated from northward_wind 14:42:50 DEBUG opendrift.readers.basereader:176: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated 14:42:50 DEBUG opendrift.readers.basereader.variables:563: Adding variable mapping: ['x_wind', 'y_wind'] -> wind_speed 14:42:50 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 14:42:50 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 14:42:50 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 14:42:50 DEBUG opendrift.readers.reader_lazy:72: Reader initialised: https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd 14:42:50 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 14:42:50 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:42:50 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:42:50 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:42:50 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:42:50 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:42:50 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:42:50 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements 14:42:50 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:42:50 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:42:50 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:42:50 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:42:50 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:42:50 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:42:50 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:42:50 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:42:50 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:42:50 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements 14:42:50 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:42:50 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:42:50 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:42:50 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:42:50 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:42:50 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:42:50 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:42:50 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:42:50 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:42:50 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:42:50 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 6000 elements 14:42:50 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:42:50 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-21 12:00:00 (before) 2024-04-21 15:00:00 (after) 14:42:50 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity 14:43:25 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_sea_water_velocity to retrieve y_sea_water_velocity 14:43:33 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:43:33 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values 14:43:33 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values 14:43:33 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 8x9x23) for time before (2024-04-21 12:00:00) 14:43:33 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity 14:43:40 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_sea_water_velocity to retrieve y_sea_water_velocity 14:43:45 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:43:45 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values 14:43:45 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values 14:43:45 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 8x9x23) for time after (2024-04-21 15:00:00) 14:43:45 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-21 12:00:00) in space (linearNDFast) 14:43:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:43:45 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-21 15:00:00) in space (linearNDFast) 14:43:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:43:45 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-21 12:00:00, weight 0.10) and after (2024-04-21 15:00:00, weight 0.90) in time 14:43:45 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:43:45 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:43:45 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:43:45 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:43:45 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:43: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 14:43:45 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:43:45 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:43: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 6000 elements 14:43:45 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:43:45 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-21 12:00:00 (before) 2024-04-21 15:00:00 (after) 14:43:45 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_wind to retrieve x_wind 14:43:46 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_wind to retrieve y_wind 14:43:46 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:43:46 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values 14:43:46 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values 14:43:46 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 7x7x1) for time before (2024-04-21 12:00:00) 14:43:46 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_wind to retrieve x_wind 14:43:46 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_wind to retrieve y_wind 14:43:46 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:43:46 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values 14:43:46 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values 14:43:46 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 7x7x1) for time after (2024-04-21 15:00:00) 14:43:46 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-21 12:00:00) in space (linearNDFast) 14:43:46 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:43:46 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-21 15:00:00) in space (linearNDFast) 14:43:46 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:43:46 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-21 12:00:00, weight 0.10) and after (2024-04-21 15:00:00, weight 0.90) in time 14:43:46 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:43:46 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:43:46 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:43:46 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:43: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'] 14:43:46 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:43:46 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:43:46 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:43:46 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:43:46 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.00481404 (min) 0.0475812 (max) 14:43:46 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.0469529 (min) 0.21267 (max) 14:43:46 DEBUG opendrift.models.basemodel.environment:905: x_wind: 0.675964 (min) 0.700701 (max) 14:43:46 DEBUG opendrift.models.basemodel.environment:905: y_wind: 4.4567 (min) 4.50023 (max) 14:43:46 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:43:46 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:43:46 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:43:46 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:43:46 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:43:46 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:43:46 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:43:46 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:43:46 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:43:46 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:43:46 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:43:46 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:43:46 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:43:46 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:43:46 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:43:46 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:43:46 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:43:46 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.500030, mean: 0.504086, max: 0.510219 14:43:46 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:43:46 DEBUG opendrift.models.physics_methods:1058: min: 3.852366, mean: 3.867957, max: 3.891416 14:43:46 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 3.852366, mean: 3.867957, max: 3.891416 14:43:46 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:43:46 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:43:46 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:43:46 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:43:46 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:43:46 DEBUG opendrift.models.openoil.openoil:861: Emulsification not yet started 14:43:46 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:43:46 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:43:46 DEBUG opendrift.models.physics_methods:1058: min: 3.852366, mean: 3.867957, max: 3.891416 14:43:46 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:43:46 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.001537, dN_50: 0.000121 14:43:46 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:43:46 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.007487716669772813 14:43:46 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:43:46 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:43:46 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:43:46 DEBUG opendrift.models.physics_methods:912: Advecting 3000 of 6000 elements above 0.100m with wind-sheared ocean current (0.135293 m/s - 0.136614 m/s) 14:43:46 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:43:46 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0022460362237508094 and 0.48135814700051643 m/s 14:43:46 DEBUG opendrift.models.basemodel:2097: 6000 active elements (0 deactivated) 14:43:46 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:43:46 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:43:46 INFO opendrift.models.basemodel:2011: 2024-04-21 15:42:41.057477 - step 2 of 120 - 6000 active elements (0 deactivated) 14:43:46 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:43:46 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:43:46 DEBUG opendrift.models.basemodel:2030: 34.98448508442708 <- latitude -> 35.02295717600999 14:43:46 DEBUG opendrift.models.basemodel:2035: 23.483364150232937 <- longitude -> 23.51898217279727 14:43:46 DEBUG opendrift.models.basemodel:2040: -150.17516672978425 <- z -> 0.0 14:43:46 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:43:46 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:43:46 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:43:46 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:43:46 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:43:46 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:43:46 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:43:46 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements 14:43:46 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:43:46 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:43:46 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:43:46 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:43:46 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:43:46 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:43:46 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:43:46 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:43:46 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:43:46 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements 14:43:46 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:43:46 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:43:46 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:43:46 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:43:46 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:43:46 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:43:46 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:43:46 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:43:46 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:43:46 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:43:46 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 6000 elements 14:43:46 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:43:46 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-21 15:00:00 (before) 2024-04-21 18:00:00 (after) 14:43:46 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity 14:43:53 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_sea_water_velocity to retrieve y_sea_water_velocity 14:44:47 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:44:47 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values 14:44:47 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values 14:44:47 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 9x9x24) for time after (2024-04-21 18:00:00) 14:44:47 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-21 15:00:00) in space (linearNDFast) 14:44:47 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:44:47 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-21 18:00:00) in space (linearNDFast) 14:44:47 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:44:47 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-21 15:00:00, weight 0.76) and after (2024-04-21 18:00:00, weight 0.24) in time 14:44:47 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:44:47 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:44:47 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:44:47 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:44:47 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:44:47 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd 14:44:47 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:44:47 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:44:47 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 14:44:47 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:44:47 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-21 15:00:00 (before) 2024-04-21 18:00:00 (after) 14:44:47 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_wind to retrieve x_wind 14:44:47 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_wind to retrieve y_wind 14:44:47 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:44:47 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values 14:44:47 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values 14:44:47 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 7x7x1) for time after (2024-04-21 18:00:00) 14:44:47 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-21 15:00:00) in space (linearNDFast) 14:44:47 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:44:47 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-21 18:00:00) in space (linearNDFast) 14:44:47 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:44:47 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-21 15:00:00, weight 0.76) and after (2024-04-21 18:00:00, weight 0.24) in time 14:44:47 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:44:47 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:44:47 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:44:47 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:44: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'] 14:44:47 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:44:47 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:44:47 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:44:47 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:44:47 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.0237624 (min) 0.0409274 (max) 14:44:47 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.0512294 (min) 0.229856 (max) 14:44:47 DEBUG opendrift.models.basemodel.environment:905: x_wind: -0.483945 (min) -0.310809 (max) 14:44:47 DEBUG opendrift.models.basemodel.environment:905: y_wind: 4.257 (min) 4.52135 (max) 14:44:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:44:47 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:44:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:44:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:44:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:44:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:44:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:44:47 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:44:47 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:44:47 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:44:47 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:44:47 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:44:47 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:44:47 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:44:47 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:44:47 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:44:47 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:44:47 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.451338, mean: 0.477563, max: 0.505332 14:44:47 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:44:47 DEBUG opendrift.models.physics_methods:1058: min: 3.659995, mean: 3.764629, max: 3.872735 14:44:47 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 3.659995, mean: 3.764629, max: 3.872735 14:44:47 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:44:47 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:44:47 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:44:47 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:44:47 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:44:47 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:44:47 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:44:47 DEBUG opendrift.models.physics_methods:1058: min: 3.659995, mean: 3.764629, max: 3.872736 14:44:47 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:44:47 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.001613, dN_50: 0.000127 14:44:47 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:44:47 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.007416039158264385 14:44:47 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:44:47 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:44:47 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:44:47 DEBUG opendrift.models.physics_methods:912: Advecting 3000 of 6000 elements above 0.100m with wind-sheared ocean current (0.130107 m/s - 0.135970 m/s) 14:44:47 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:44:47 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0006187029221147531 and 0.45730975932548934 m/s 14:44:47 DEBUG opendrift.models.basemodel:2097: 6000 active elements (0 deactivated) 14:44:47 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:44:47 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:44:47 INFO opendrift.models.basemodel:2011: 2024-04-21 16:42:41.057477 - step 3 of 120 - 6000 active elements (0 deactivated) 14:44:47 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:44:47 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:44:47 DEBUG opendrift.models.basemodel:2030: 34.980815204936285 <- latitude -> 35.03931066978308 14:44:47 DEBUG opendrift.models.basemodel:2035: 23.482584127679406 <- longitude -> 23.52730412957161 14:44:47 DEBUG opendrift.models.basemodel:2040: -149.71929421800513 <- z -> 0.0 14:44:47 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:44:47 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:44:47 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:44:47 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:44:47 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:44:47 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:44:47 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:44:47 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements 14:44:47 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:44:47 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:44:47 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:44:47 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:44:47 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:44:47 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:44:47 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:44:47 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:44:47 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:44:47 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements 14:44:47 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:44:47 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:44:47 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:44:47 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:44:47 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:44:47 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:44:47 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:44:47 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:44:47 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:44:47 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:44:47 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 6000 elements 14:44:47 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:44:47 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-21 15:00:00 (before) 2024-04-21 18:00:00 (after) 14:44:47 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-21 15:00:00) in space (linearNDFast) 14:44:47 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:44:47 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-21 18:00:00) in space (linearNDFast) 14:44:47 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:44:47 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-21 15:00:00, weight 0.43) and after (2024-04-21 18:00:00, weight 0.57) in time 14:44:47 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:44:47 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:44:47 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:44:47 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:44:47 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:44:47 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd 14:44:47 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:44:47 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:44:47 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 14:44:47 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:44:47 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-21 15:00:00 (before) 2024-04-21 18:00:00 (after) 14:44:47 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-21 15:00:00) in space (linearNDFast) 14:44:47 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:44:47 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-21 18:00:00) in space (linearNDFast) 14:44:47 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:44:47 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-21 15:00:00, weight 0.43) and after (2024-04-21 18:00:00, weight 0.57) in time 14:44:47 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:44:47 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:44:47 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:44:47 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:44: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'] 14:44:47 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:44:47 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:44:47 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:44:47 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:44:47 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.0108797 (min) 0.0646301 (max) 14:44:47 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.0405098 (min) 0.228489 (max) 14:44:47 DEBUG opendrift.models.basemodel.environment:905: x_wind: -2.07324 (min) -1.74016 (max) 14:44:47 DEBUG opendrift.models.basemodel.environment:905: y_wind: 3.96501 (min) 4.38287 (max) 14:44:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:44:47 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:44:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:44:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:44:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:44:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:44:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:44:47 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:44:47 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:44:47 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:44:47 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:44:47 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:44:47 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:44:47 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:44:47 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:44:47 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:44:47 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:44:47 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.489546, mean: 0.525626, max: 0.547047 14:44:47 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:44:47 DEBUG opendrift.models.physics_methods:1058: min: 3.811767, mean: 3.949593, max: 4.029413 14:44:47 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 3.811767, mean: 3.949593, max: 4.029413 14:44:47 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:44:47 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:44:47 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:44:47 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:44:47 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:44:47 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:44:47 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:44:47 DEBUG opendrift.models.physics_methods:1058: min: 3.811767, mean: 3.949593, max: 4.029413 14:44:47 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:44:47 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.001538, dN_50: 0.000121 14:44:48 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:44:48 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.008027884925938917 14:44:48 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:44:48 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:44:48 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:44:48 DEBUG opendrift.models.physics_methods:912: Advecting 3000 of 6000 elements above 0.100m with wind-sheared ocean current (0.134596 m/s - 0.141471 m/s) 14:44:48 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:44:48 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0017541404241848248 and 0.49065842250043995 m/s 14:44:48 DEBUG opendrift.models.basemodel:2097: 6000 active elements (0 deactivated) 14:44:48 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:44:48 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:44:48 INFO opendrift.models.basemodel:2011: 2024-04-21 17:42:41.057477 - step 4 of 120 - 6000 active elements (0 deactivated) 14:44:48 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:44:48 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:44:48 DEBUG opendrift.models.basemodel:2030: 34.976571062166066 <- latitude -> 35.056967310345534 14:44:48 DEBUG opendrift.models.basemodel:2035: 23.4766956975629 <- longitude -> 23.529799366924415 14:44:48 DEBUG opendrift.models.basemodel:2040: -149.09442657248135 <- z -> 0.0 14:44:48 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:44:48 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:44:48 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:44:48 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:44:48 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:44:48 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:44:48 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:44:48 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements 14:44:48 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:44:48 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:44:48 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:44:48 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:44:48 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:44:48 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:44:48 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:44:48 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:44:48 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:44:48 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements 14:44:48 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:44:48 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:44:48 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:44:48 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:44:48 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:44:48 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:44:48 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:44:48 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:44:48 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:44:48 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:44:48 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 6000 elements 14:44:48 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:44:48 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-21 15:00:00 (before) 2024-04-21 18:00:00 (after) 14:44:48 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-21 15:00:00) in space (linearNDFast) 14:44:48 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:44:48 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-21 18:00:00) in space (linearNDFast) 14:44:48 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:44:48 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-21 15:00:00, weight 0.10) and after (2024-04-21 18:00:00, weight 0.90) in time 14:44:48 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:44:48 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:44:48 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:44:48 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:44:48 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:44: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 14:44:48 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:44:48 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:44: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 14:44:48 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:44:48 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-21 15:00:00 (before) 2024-04-21 18:00:00 (after) 14:44:48 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-21 15:00:00) in space (linearNDFast) 14:44:48 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:44:48 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-21 18:00:00) in space (linearNDFast) 14:44:48 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:44:48 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-21 15:00:00, weight 0.10) and after (2024-04-21 18:00:00, weight 0.90) in time 14:44:48 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:44:48 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:44:48 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:44:48 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:44: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'] 14:44:48 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:44:48 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:44:48 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:44:48 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:44:48 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.00193252 (min) 0.08443 (max) 14:44:48 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.030904 (min) 0.22738 (max) 14:44:48 DEBUG opendrift.models.basemodel.environment:905: x_wind: -3.65907 (min) -3.07824 (max) 14:44:48 DEBUG opendrift.models.basemodel.environment:905: y_wind: 3.72097 (min) 4.18601 (max) 14:44:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:44:48 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:44:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:44:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:44:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:44:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:44:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:44:48 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:44:48 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:44:48 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:44:48 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:44:48 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:44:48 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:44:48 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:44:48 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:44:48 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:44:48 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:44:48 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.625732, mean: 0.686470, max: 0.707628 14:44:48 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:44:48 DEBUG opendrift.models.physics_methods:1058: min: 4.309471, mean: 4.513564, max: 4.582811 14:44:48 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.309471, mean: 4.513564, max: 4.582811 14:44:48 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:44:48 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:44:48 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:44:48 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:44:48 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:44:48 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:44:48 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:44:48 DEBUG opendrift.models.physics_methods:1058: min: 4.309471, mean: 4.513564, max: 4.582811 14:44:48 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:44:48 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.001329, dN_50: 0.000104 14:44:48 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:44:48 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.010383171005662842 14:44:48 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:44:48 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:44:48 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 3000 surface elements 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 2998 surface elements 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 2996 surface elements 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 2995 surface elements 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 2994 surface elements 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 2992 surface elements 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 2990 surface elements 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 2989 surface elements 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 2988 surface elements 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 2987 surface elements 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 2984 surface elements 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 2982 surface elements 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 2980 surface elements 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 2977 surface elements 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 2974 surface elements 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 2971 surface elements 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 2969 surface elements 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 2967 surface elements 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 2965 surface elements 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 2961 surface elements 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 2957 surface elements 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 2955 surface elements 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 2954 surface elements 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 2952 surface elements 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 2950 surface elements 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 2944 surface elements 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 2941 surface elements 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 2939 surface elements 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 2937 surface elements 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 2934 surface elements 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 2927 surface elements 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 2924 surface elements 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 2922 surface elements 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 2920 surface elements 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 2917 surface elements 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 2916 surface elements 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 2914 surface elements 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 2911 surface elements 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 2905 surface elements 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 2904 surface elements 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 2903 surface elements 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 2900 surface elements 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 2897 surface elements 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 2895 surface elements 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 2892 surface elements 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 2891 surface elements 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 2884 surface elements 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 2882 surface elements 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 2879 surface elements 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 2876 surface elements 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 2876 surface elements 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 2874 surface elements 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 2871 surface elements 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 2870 surface elements 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 2864 surface elements 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 2864 surface elements 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 2862 surface elements 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 2859 surface elements 14:44:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 2855 surface elements 14:44:48 DEBUG opendrift.models.physics_methods:912: Advecting 2856 of 6000 elements above 0.100m with wind-sheared ocean current (0.043626 m/s - 0.159805 m/s) 14:44:48 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:44:48 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0024104332240937184 and 0.44324009690596905 m/s 14:44:48 DEBUG opendrift.models.basemodel:2097: 6000 active elements (0 deactivated) 14:44:48 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:44:48 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:44:48 INFO opendrift.models.basemodel:2011: 2024-04-21 18:42:41.057477 - step 5 of 120 - 6000 active elements (0 deactivated) 14:44:48 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:44:48 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:44:48 DEBUG opendrift.models.basemodel:2030: 34.97418187276962 <- latitude -> 35.06793174528967 14:44:48 DEBUG opendrift.models.basemodel:2035: 23.473821400516858 <- longitude -> 23.531651063313838 14:44:48 DEBUG opendrift.models.basemodel:2040: -148.1778688789611 <- z -> 0.0 14:44:48 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:44:48 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:44:48 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:44:48 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:44:48 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:44:48 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:44:48 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:44:48 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements 14:44:48 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:44:48 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:44:48 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:44:48 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:44:48 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:44:48 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:44:48 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:44:48 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:44:48 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:44:48 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements 14:44:48 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:44:48 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:44:48 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:44:48 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:44:48 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:44:48 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:44:48 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:44:48 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:44:48 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:44:48 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:44:48 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 6000 elements 14:44:48 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:44:48 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-21 18:00:00 (before) 2024-04-21 21:00:00 (after) 14:44:48 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity 14:44:53 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_sea_water_velocity to retrieve y_sea_water_velocity 14:44:57 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:44:57 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values 14:44:57 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values 14:44:57 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 9x10x23) for time after (2024-04-21 21:00:00) 14:44:57 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-21 18:00:00) in space (linearNDFast) 14:44:57 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:44:57 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-21 21:00:00) in space (linearNDFast) 14:44:57 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:44:57 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-21 18:00:00, weight 0.76) and after (2024-04-21 21:00:00, weight 0.24) in time 14:44:57 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:44:57 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:44:57 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:44:57 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:44:57 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:44:57 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd 14:44:57 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:44:57 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:44:57 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 14:44:57 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:44:57 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-21 18:00:00 (before) 2024-04-21 21:00:00 (after) 14:44:57 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_wind to retrieve x_wind 14:44:58 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_wind to retrieve y_wind 14:44:58 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:44:58 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values 14:44:58 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values 14:44:58 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 7x7x1) for time after (2024-04-21 21:00:00) 14:44:58 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-21 18:00:00) in space (linearNDFast) 14:44:58 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:44:58 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-21 21:00:00) in space (linearNDFast) 14:44:58 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:44:58 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-21 18:00:00, weight 0.76) and after (2024-04-21 21:00:00, weight 0.24) in time 14:44:58 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:44:58 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:44:58 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:44:58 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:44: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'] 14:44:58 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:44:58 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:44:58 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:44:58 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:44:58 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.000906873 (min) 0.0954457 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.0195114 (min) 0.215118 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:905: x_wind: -4.67771 (min) -3.89927 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:905: y_wind: 3.39702 (min) 3.947 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:44:58 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.730583, mean: 0.817914, max: 0.862995 14:44:58 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:44:58 DEBUG opendrift.models.physics_methods:1058: min: 4.656551, mean: 4.926017, max: 5.060970 14:44:58 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.656551, mean: 4.926017, max: 5.060970 14:44:58 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:44:58 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:44:58 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:44:58 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:44:58 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:44:58 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:44:58 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:44:58 DEBUG opendrift.models.physics_methods:1058: min: 4.656551, mean: 4.926017, max: 5.060969 14:44:58 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:44:58 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.001219, dN_50: 0.000096 14:44:58 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:44:58 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.012661985619166276 14:44:58 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:44:58 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:44:58 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 2854 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 2848 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 2841 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 2838 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 10 of 2832 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 8 of 2823 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 2815 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 2808 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 2802 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 2799 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 2795 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 8 of 2788 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 2780 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 2774 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 2771 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 2767 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 2765 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 12 of 2759 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 2749 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 2744 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 2742 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 9 of 2736 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 2728 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 2724 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 2719 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 2718 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 2713 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 2709 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 2706 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 2700 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 2696 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 2689 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 2684 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 2679 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 2673 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 2670 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 11 of 2664 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 2653 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 2649 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 2643 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 2637 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 2635 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 2635 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 2630 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 2625 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 2623 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 8 of 2620 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 2612 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 2607 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 10 of 2601 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 2591 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 2586 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 2582 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 2575 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 8 of 2572 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 2564 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 2558 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 2551 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 11 of 2547 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 2536 surface elements 14:44:58 DEBUG opendrift.models.physics_methods:912: Advecting 2537 of 6000 elements above 0.100m with wind-sheared ocean current (0.051925 m/s - 0.174135 m/s) 14:44:58 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:44:58 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0016222041517496187 and 0.4370340071037648 m/s 14:44:58 DEBUG opendrift.models.basemodel:2097: 6000 active elements (0 deactivated) 14:44:58 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:44:58 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:44:58 INFO opendrift.models.basemodel:2011: 2024-04-21 19:42:41.057477 - step 6 of 120 - 6000 active elements (0 deactivated) 14:44:58 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:44:58 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:44:58 DEBUG opendrift.models.basemodel:2030: 34.96883331112521 <- latitude -> 35.08251444748528 14:44:58 DEBUG opendrift.models.basemodel:2035: 23.471755654080695 <- longitude -> 23.53408831342842 14:44:58 DEBUG opendrift.models.basemodel:2040: -147.6365155723701 <- z -> 0.0 14:44:58 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:44:58 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:44:58 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:44:58 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:44:58 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:44:58 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:44:58 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:44:58 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements 14:44:58 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:44:58 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:44:58 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:44:58 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:44:58 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:44:58 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:44:58 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:44:58 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:44:58 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:44:58 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements 14:44:58 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:44:58 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:44:58 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:44:58 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:44:58 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:44:58 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:44:58 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:44:58 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:44:58 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:44:58 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:44:58 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 6000 elements 14:44:58 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:44:58 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-21 18:00:00 (before) 2024-04-21 21:00:00 (after) 14:44:58 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-21 18:00:00) in space (linearNDFast) 14:44:58 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:44:58 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-21 21:00:00) in space (linearNDFast) 14:44:58 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:44:58 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-21 18:00:00, weight 0.43) and after (2024-04-21 21:00:00, weight 0.57) in time 14:44:58 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:44:58 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:44:58 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:44:58 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:44:58 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:44: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 14:44:58 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:44:58 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:44: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 6000 elements 14:44:58 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:44:58 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-21 18:00:00 (before) 2024-04-21 21:00:00 (after) 14:44:58 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-21 18:00:00) in space (linearNDFast) 14:44:58 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:44:58 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-21 21:00:00) in space (linearNDFast) 14:44:58 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:44:58 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-21 18:00:00, weight 0.43) and after (2024-04-21 21:00:00, weight 0.57) in time 14:44:58 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:44:58 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:44:58 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:44:58 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:44: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'] 14:44:58 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:44:58 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:44:58 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:44:58 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:44:58 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.00126092 (min) 0.104321 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.00571107 (min) 0.19849 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:905: x_wind: -5.46215 (min) -4.4582 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:905: y_wind: 3.09157 (min) 3.69948 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:44:58 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.810231, mean: 0.931676, max: 1.004483 14:44:58 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:44:58 DEBUG opendrift.models.physics_methods:1058: min: 4.903814, mean: 5.256007, max: 5.460103 14:44:58 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.903814, mean: 5.256007, max: 5.460103 14:44:58 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:44:58 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:44:58 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:44:58 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:44:58 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:44:58 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:44:58 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:44:58 DEBUG opendrift.models.physics_methods:1058: min: 4.903814, mean: 5.256007, max: 5.460103 14:44:58 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:44:58 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.001155, dN_50: 0.000091 14:44:58 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:44:58 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.014737230353233667 14:44:58 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:44:58 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:44:58 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 9 of 2535 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 9 of 2528 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 8 of 2520 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 9 of 2513 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 11 of 2505 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 11 of 2496 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 2485 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 10 of 2480 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 2471 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 2464 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 11 of 2457 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 9 of 2446 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 12 of 2437 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 2425 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 12 of 2420 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 2408 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 2405 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 2400 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 9 of 2396 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 8 of 2387 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 2380 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 11 of 2375 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 2364 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 10 of 2359 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 2350 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 11 of 2344 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 10 of 2335 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 2326 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 11 of 2321 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 8 of 2311 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 2303 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 2299 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 2295 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 9 of 2291 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 2284 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 2277 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 2272 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 2267 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 8 of 2264 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 8 of 2257 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 2250 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 2245 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 8 of 2241 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 2233 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 2226 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 2219 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 10 of 2212 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 8 of 2202 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 8 of 2194 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 2187 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 2182 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 2178 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 8 of 2172 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 2164 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 2157 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 9 of 2150 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 2141 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 2137 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 2130 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 2129 surface elements 14:44:58 DEBUG opendrift.models.physics_methods:912: Advecting 2129 of 6000 elements above 0.100m with wind-sheared ocean current (0.005449 m/s - 0.185084 m/s) 14:44:58 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:44:58 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.004161841768363598 and 0.445781632089122 m/s 14:44:58 DEBUG opendrift.models.basemodel:2097: 6000 active elements (0 deactivated) 14:44:58 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:44:58 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:44:58 INFO opendrift.models.basemodel:2011: 2024-04-21 20:42:41.057477 - step 7 of 120 - 6000 active elements (0 deactivated) 14:44:58 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:44:58 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:44:58 DEBUG opendrift.models.basemodel:2030: 34.96590552241167 <- latitude -> 35.09002981775999 14:44:58 DEBUG opendrift.models.basemodel:2035: 23.46304872837708 <- longitude -> 23.539545929489815 14:44:58 DEBUG opendrift.models.basemodel:2040: -146.92237802315827 <- z -> 0.0 14:44:58 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:44:58 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:44:58 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:44:58 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:44:58 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:44:58 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:44:58 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:44:58 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements 14:44:58 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:44:58 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:44:58 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:44:58 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:44:58 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:44:58 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:44:58 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:44:58 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:44:58 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:44:58 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements 14:44:58 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:44:58 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:44:58 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:44:58 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:44:58 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:44:58 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:44:58 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:44:58 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:44:58 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:44:58 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:44:58 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 6000 elements 14:44:58 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:44:58 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-21 18:00:00 (before) 2024-04-21 21:00:00 (after) 14:44:58 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-21 18:00:00) in space (linearNDFast) 14:44:58 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:44:58 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-21 21:00:00) in space (linearNDFast) 14:44:58 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:44:58 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-21 18:00:00, weight 0.10) and after (2024-04-21 21:00:00, weight 0.90) in time 14:44:58 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:44:58 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:44:58 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:44:58 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:44:58 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:44: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 14:44:58 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:44:58 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:44: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 6000 elements 14:44:58 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:44:58 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-21 18:00:00 (before) 2024-04-21 21:00:00 (after) 14:44:58 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-21 18:00:00) in space (linearNDFast) 14:44:58 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:44:58 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-21 21:00:00) in space (linearNDFast) 14:44:58 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:44:58 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-21 18:00:00, weight 0.10) and after (2024-04-21 21:00:00, weight 0.90) in time 14:44:58 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:44:58 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:44:58 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:44:58 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:44: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'] 14:44:58 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:44:58 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:44:58 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:44:58 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:44:58 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.000854644 (min) 0.119671 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.00562351 (min) 0.179255 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:905: x_wind: -6.24791 (min) -5.03798 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:905: y_wind: 2.79694 (min) 3.44191 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:44:58 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:44:58 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.888182, mean: 1.072444, max: 1.181397 14:44:58 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:44:58 DEBUG opendrift.models.physics_methods:1058: min: 5.134292, mean: 5.636919, max: 5.921443 14:44:58 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 5.134292, mean: 5.636919, max: 5.921443 14:44:58 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:44:58 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:44:58 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:44:58 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:44:58 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:44:58 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:44:58 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:44:58 DEBUG opendrift.models.physics_methods:1058: min: 5.134292, mean: 5.636919, max: 5.921443 14:44:58 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:44:58 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.001096, dN_50: 0.000086 14:44:58 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:44:58 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.01733208195800605 14:44:58 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:44:58 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:44:58 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 2127 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 11 of 2121 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 8 of 2110 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 13 of 2102 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 2090 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 2085 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 8 of 2082 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 2074 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 2071 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 2065 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 8 of 2060 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 2055 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 2049 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 11 of 2043 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 2032 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 8 of 2027 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 2019 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 2014 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 2011 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 2008 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 2002 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 1996 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 10 of 1990 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 1981 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 1975 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 9 of 1972 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 10 of 1963 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 1954 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 1952 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 1947 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 8 of 1943 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 1937 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 13 of 1930 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 9 of 1917 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 1908 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 1906 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 1902 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 13 of 1899 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 1886 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 1882 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 9 of 1876 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 1869 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 1863 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 1858 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 1853 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 9 of 1849 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 1841 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 1840 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 1836 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 1832 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 12 of 1827 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 1815 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 12 of 1809 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 10 of 1798 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 1788 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 1785 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 1778 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 8 of 1773 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 10 of 1765 surface elements 14:44:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 1755 surface elements 14:44:58 DEBUG opendrift.models.physics_methods:912: Advecting 1759 of 6000 elements above 0.100m with wind-sheared ocean current (0.004555 m/s - 0.196855 m/s) 14:44:58 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:44:58 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0025584570322253323 and 0.5081921870952719 m/s 14:44:58 DEBUG opendrift.models.basemodel:2097: 6000 active elements (0 deactivated) 14:44:58 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:44:58 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:44:58 INFO opendrift.models.basemodel:2011: 2024-04-21 21:42:41.057477 - step 8 of 120 - 6000 active elements (0 deactivated) 14:44:58 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:44:58 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:44:58 DEBUG opendrift.models.basemodel:2030: 34.95757018534901 <- latitude -> 35.10094616302256 14:44:58 DEBUG opendrift.models.basemodel:2035: 23.457036905407215 <- longitude -> 23.543532246480055 14:44:58 DEBUG opendrift.models.basemodel:2040: -146.03300242002175 <- z -> 0.0 14:44:58 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:44:58 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:44:58 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:44:58 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:44:58 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:44:58 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:44:58 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:44:58 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements 14:44:58 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:44:58 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:44:58 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:44:58 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:44:58 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:44:58 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:44:58 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:44:58 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:44:58 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:44:58 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements 14:44:58 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:44:58 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:44:58 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:44:58 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:44:58 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:44:58 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:44:58 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:44:58 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:44:58 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:44:58 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:44:58 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 6000 elements 14:44:58 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:44:58 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-21 21:00:00 (before) 2024-04-22 00:00:00 (after) 14:44:58 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity 14:45:07 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_sea_water_velocity to retrieve y_sea_water_velocity 14:45:08 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:45:08 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values 14:45:08 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values 14:45:08 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity'] 14:45:08 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 9x12x23) for time after (2024-04-22 00:00:00) 14:45:08 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-21 21:00:00) in space (linearNDFast) 14:45:08 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:45:08 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-22 00:00:00) in space (linearNDFast) 14:45:08 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:45:08 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-21 21:00:00, weight 0.76) and after (2024-04-22 00:00:00, weight 0.24) in time 14:45:08 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:45:08 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:45:08 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:45:08 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:45:08 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:45: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 14:45:08 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:45:08 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:45: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 14:45:08 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:45:08 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-21 21:00:00 (before) 2024-04-22 00:00:00 (after) 14:45:08 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_wind to retrieve x_wind 14:45:09 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_wind to retrieve y_wind 14:45:09 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:45:09 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values 14:45:09 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values 14:45:09 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 7x7x1) for time after (2024-04-22 00:00:00) 14:45:09 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-21 21:00:00) in space (linearNDFast) 14:45:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:45:09 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-22 00:00:00) in space (linearNDFast) 14:45:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:45:09 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-21 21:00:00, weight 0.76) and after (2024-04-22 00:00:00, weight 0.24) in time 14:45:09 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:45:09 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:45:09 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:45:09 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:45: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'] 14:45:09 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:45:09 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:45:09 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:45:09 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:45:09 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.00729935 (min) 0.118862 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.00909441 (min) 0.160281 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:905: x_wind: -7.09511 (min) -5.77454 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:905: y_wind: 2.53103 (min) 2.94206 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:45:09 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.022138, mean: 1.263972, max: 1.417918 14:45:09 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:45:09 DEBUG opendrift.models.physics_methods:1058: min: 5.507880, mean: 6.116861, max: 6.487169 14:45:09 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 5.507880, mean: 6.116861, max: 6.487169 14:45:09 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:45:09 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:45:09 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:45:09 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:45:09 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:45:09 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:45:09 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:45:09 DEBUG opendrift.models.physics_methods:1058: min: 5.507880, mean: 6.116861, max: 6.487169 14:45:09 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:45:09 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.001037, dN_50: 0.000081 14:45:09 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:45:09 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.02080120053478778 14:45:09 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:45:09 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:45:09 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 1752 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 8 of 1749 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 1741 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 1734 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 8 of 1728 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 10 of 1720 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 1712 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 9 of 1707 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 8 of 1698 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 1690 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 1685 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 9 of 1680 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 9 of 1671 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 1662 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 1655 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 8 of 1649 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 1643 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 1637 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 9 of 1633 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 1625 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 8 of 1618 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 15 of 1610 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 1595 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 8 of 1590 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 1582 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 9 of 1577 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 1568 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 10 of 1564 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 1556 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 8 of 1553 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 1545 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 1538 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 1533 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 1529 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 1524 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 8 of 1517 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 1509 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 1507 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 8 of 1501 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 9 of 1494 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 1485 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 12 of 1479 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 1467 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 1460 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 1455 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 11 of 1449 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 1439 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 1438 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 1432 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 11 of 1431 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 10 of 1420 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 8 of 1411 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 1404 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 1398 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 1395 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 1394 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 11 of 1389 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 1380 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 1378 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 9 of 1374 surface elements 14:45:09 DEBUG opendrift.models.physics_methods:912: Advecting 1371 of 6000 elements above 0.100m with wind-sheared ocean current (0.026834 m/s - 0.213461 m/s) 14:45:09 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:45:09 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0018148904142039934 and 0.40454949578149074 m/s 14:45:09 DEBUG opendrift.models.basemodel:2097: 6000 active elements (0 deactivated) 14:45:09 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:45:09 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:45:09 INFO opendrift.models.basemodel:2011: 2024-04-21 22:42:41.057477 - step 9 of 120 - 6000 active elements (0 deactivated) 14:45:09 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:45:09 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:45:09 DEBUG opendrift.models.basemodel:2030: 34.959949921783064 <- latitude -> 35.10987310449529 14:45:09 DEBUG opendrift.models.basemodel:2035: 23.45034101131478 <- longitude -> 23.546931176619527 14:45:09 DEBUG opendrift.models.basemodel:2040: -145.13422560855014 <- z -> 0.0 14:45:09 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:45:09 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:45:09 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:45:09 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:45:09 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:45:09 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:45:09 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:45:09 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements 14:45:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:45:09 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:45:09 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:45:09 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:45:09 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:45:09 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:45:09 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:45:09 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:45:09 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:45:09 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements 14:45:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:45:09 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:45:09 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:45:09 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:45:09 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:45:09 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:45:09 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:45:09 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:45:09 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:45:09 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:45:09 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 6000 elements 14:45:09 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:45:09 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-21 21:00:00 (before) 2024-04-22 00:00:00 (after) 14:45:09 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-21 21:00:00) in space (linearNDFast) 14:45:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:45:09 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-22 00:00:00) in space (linearNDFast) 14:45:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:45:09 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-21 21:00:00, weight 0.43) and after (2024-04-22 00:00:00, weight 0.57) in time 14:45:09 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:45:09 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:45:09 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:45:09 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:45:09 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:45: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 14:45:09 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:45:09 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:45: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 6000 elements 14:45:09 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:45:09 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-21 21:00:00 (before) 2024-04-22 00:00:00 (after) 14:45:09 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-21 21:00:00) in space (linearNDFast) 14:45:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:45:09 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-22 00:00:00) in space (linearNDFast) 14:45:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:45:09 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-21 21:00:00, weight 0.43) and after (2024-04-22 00:00:00, weight 0.57) in time 14:45:09 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:45:09 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:45:09 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:45:09 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:45: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'] 14:45:09 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:45:09 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:45:09 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:45:09 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:45:09 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.0145139 (min) 0.104355 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.0196435 (min) 0.135156 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:905: x_wind: -7.9683 (min) -6.61269 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:905: y_wind: 2.01483 (min) 2.50872 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:45:09 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.191115, mean: 1.508572, max: 1.706712 14:45:09 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:45:09 DEBUG opendrift.models.physics_methods:1058: min: 5.945746, mean: 6.681296, max: 7.117210 14:45:09 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 5.945746, mean: 6.681296, max: 7.117210 14:45:09 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:45:09 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:45:09 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:45:09 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:45:09 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:45:09 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:45:09 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:45:09 DEBUG opendrift.models.physics_methods:1058: min: 5.945746, mean: 6.681295, max: 7.117209 14:45:09 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:45:09 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.000984, dN_50: 0.000077 14:45:09 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:45:09 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.025037023983323928 14:45:09 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:45:09 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:45:09 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 1365 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 1360 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 9 of 1354 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 1345 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 1338 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 1334 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 11 of 1330 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 1319 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 1312 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 10 of 1306 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 1296 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 1292 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 8 of 1290 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 8 of 1285 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 13 of 1277 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 1264 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 9 of 1257 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 11 of 1249 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 1238 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 10 of 1235 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 11 of 1225 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 9 of 1214 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 8 of 1207 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 1199 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 8 of 1192 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 10 of 1184 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 1175 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 11 of 1172 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 1161 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 9 of 1154 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 8 of 1145 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 1138 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 8 of 1133 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 1125 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 1120 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 8 of 1117 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 1110 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 10 of 1103 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 1093 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 1086 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 9 of 1081 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 1073 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 8 of 1068 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 1061 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 1055 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 1050 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 8 of 1046 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 1038 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 9 of 1033 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 10 of 1024 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 1014 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 1008 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 8 of 1003 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 995 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 10 of 988 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 979 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 975 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 9 of 970 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 961 surface elements 14:45:09 DEBUG opendrift.models.openoil.openoil:1036: Entraining 8 of 956 surface elements 14:45:09 DEBUG opendrift.models.physics_methods:912: Advecting 959 of 6000 elements above 0.100m with wind-sheared ocean current (0.010962 m/s - 0.231809 m/s) 14:45:09 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:45:09 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.00030840357758222376 and 0.4484315123261148 m/s 14:45:09 DEBUG opendrift.models.basemodel:2097: 6000 active elements (0 deactivated) 14:45:09 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:45:09 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:45:09 INFO opendrift.models.basemodel:2011: 2024-04-21 23:42:41.057477 - step 10 of 120 - 6000 active elements (0 deactivated) 14:45:09 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:45:09 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:45:09 DEBUG opendrift.models.basemodel:2030: 34.960332224057154 <- latitude -> 35.11384753645952 14:45:09 DEBUG opendrift.models.basemodel:2035: 23.44312135620716 <- longitude -> 23.55038726926488 14:45:09 DEBUG opendrift.models.basemodel:2040: -144.45842242292136 <- z -> 0.0 14:45:09 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:45:09 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:45:09 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:45:09 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:45:09 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:45:09 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:45:09 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:45:09 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements 14:45:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:45:09 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:45:09 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:45:09 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:45:09 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:45:09 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:45:09 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:45:09 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:45:09 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:45:09 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements 14:45:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:45:09 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:45:09 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:45:09 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:45:09 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:45:09 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:45:09 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:45:09 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:45:09 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:45:09 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:45:09 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 6000 elements 14:45:09 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:45:09 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-21 21:00:00 (before) 2024-04-22 00:00:00 (after) 14:45:09 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-21 21:00:00) in space (linearNDFast) 14:45:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:45:09 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-22 00:00:00) in space (linearNDFast) 14:45:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:45:09 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-21 21:00:00, weight 0.10) and after (2024-04-22 00:00:00, weight 0.90) in time 14:45:09 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:45:09 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:45:09 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:45:09 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:45:09 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:45: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 14:45:09 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:45:09 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:45: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 6000 elements 14:45:09 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:45:09 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-21 21:00:00 (before) 2024-04-22 00:00:00 (after) 14:45:09 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-21 21:00:00) in space (linearNDFast) 14:45:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:45:09 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-22 00:00:00) in space (linearNDFast) 14:45:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:45:09 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-21 21:00:00, weight 0.10) and after (2024-04-22 00:00:00, weight 0.90) in time 14:45:09 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:45:09 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:45:09 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:45:09 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:45: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'] 14:45:09 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:45:09 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:45:09 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:45:09 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:45:09 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.0209902 (min) 0.0955587 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.00282548 (min) 0.107359 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:905: x_wind: -8.84029 (min) -7.47737 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:905: y_wind: 1.32261 (min) 2.30112 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:45:09 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:45:09 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.437003, mean: 1.803100, max: 2.041628 14:45:09 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:45:09 DEBUG opendrift.models.physics_methods:1058: min: 6.530680, mean: 7.305239, max: 7.784269 14:45:09 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 6.530680, mean: 7.305239, max: 7.784269 14:45:09 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:45:09 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:45:09 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:45:09 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:45:09 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:45:09 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:45:09 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:45:09 DEBUG opendrift.models.physics_methods:1058: min: 6.530680, mean: 7.305239, max: 7.784269 14:45:09 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:45:09 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.000948, dN_50: 0.000074 14:45:09 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:45:10 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.029949319481461033 14:45:10 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:45:10 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:45:10 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 949 surface elements 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 9 of 942 surface elements 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 933 surface elements 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 8 of 928 surface elements 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 921 surface elements 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 11 of 915 surface elements 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 904 surface elements 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 898 surface elements 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 893 surface elements 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 891 surface elements 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 9 of 885 surface elements 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 9 of 877 surface elements 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 869 surface elements 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 11 of 866 surface elements 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 855 surface elements 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 8 of 850 surface elements 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 842 surface elements 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 9 of 837 surface elements 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 828 surface elements 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 823 surface elements 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 818 surface elements 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 814 surface elements 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 809 surface elements 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 802 surface elements 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 797 surface elements 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 794 surface elements 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 788 surface elements 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 785 surface elements 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 784 surface elements 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 9 of 778 surface elements 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 770 surface elements 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 764 surface elements 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 761 surface elements 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 754 surface elements 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 9 of 752 surface elements 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 743 surface elements 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 739 surface elements 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 734 surface elements 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 8 of 732 surface elements 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 724 surface elements 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 720 surface elements 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 8 of 714 surface elements 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 11 of 707 surface elements 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 696 surface elements 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 691 surface elements 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 684 surface elements 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 679 surface elements 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 674 surface elements 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 670 surface elements 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 664 surface elements 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 662 surface elements 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 660 surface elements 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 654 surface elements 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 649 surface elements 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 647 surface elements 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 644 surface elements 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 641 surface elements 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 638 surface elements 14:45:10 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 634 surface elements 14:45:10 DEBUG opendrift.models.physics_methods:912: Advecting 638 of 6000 elements above 0.100m with wind-sheared ocean current (0.015219 m/s - 0.252298 m/s) 14:45:10 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:45:10 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0034441809008368724 and 0.4252505242085652 m/s 14:45:10 DEBUG opendrift.models.basemodel:2097: 6000 active elements (0 deactivated) 14:45:10 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:45:10 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:45:10 INFO opendrift.models.basemodel:2011: 2024-04-22 00:42:41.057477 - step 11 of 120 - 6000 active elements (0 deactivated) 14:45:10 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:45:10 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:45:10 DEBUG opendrift.models.basemodel:2030: 34.96132522100211 <- latitude -> 35.1182999387032 14:45:10 DEBUG opendrift.models.basemodel:2035: 23.43351437721114 <- longitude -> 23.55532945387815 14:45:10 DEBUG opendrift.models.basemodel:2040: -143.60577880964928 <- z -> 0.0 14:45:10 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:45:10 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:45:10 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:45:10 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:45:10 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:45:10 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:45:10 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:45:10 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements 14:45:10 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:45:10 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:45:10 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:45:10 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:45:10 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:45:10 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:45:10 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:45:10 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:45:10 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:45:10 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements 14:45:10 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:45:10 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:45:10 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:45:10 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:45:10 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:45:10 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:45:10 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:45:10 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:45:10 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:45:10 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:45:10 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 6000 elements 14:45:10 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:45:10 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-22 00:00:00 (before) 2024-04-22 03:00:00 (after) 14:45:10 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity 14:45:18 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_sea_water_velocity to retrieve y_sea_water_velocity 14:45:22 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:45:22 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values 14:45:22 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values 14:45:22 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity'] 14:45:22 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 9x12x23) for time after (2024-04-22 03:00:00) 14:45:22 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-22 00:00:00) in space (linearNDFast) 14:45:22 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:45:22 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-22 03:00:00) in space (linearNDFast) 14:45:22 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:45:22 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-22 00:00:00, weight 0.76) and after (2024-04-22 03:00:00, weight 0.24) in time 14:45:22 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:45:22 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:45:22 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:45:22 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:45:22 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:45: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 14:45:22 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:45:22 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:45: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 14:45:22 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:45:22 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-22 00:00:00 (before) 2024-04-22 03:00:00 (after) 14:45:22 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_wind to retrieve x_wind 14:45:22 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_wind to retrieve y_wind 14:45:23 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:45:23 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values 14:45:23 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values 14:45:23 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 7x7x1) for time after (2024-04-22 03:00:00) 14:45:23 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-22 00:00:00) in space (linearNDFast) 14:45:23 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:45:23 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-22 03:00:00) in space (linearNDFast) 14:45:23 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:45:23 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-22 00:00:00, weight 0.76) and after (2024-04-22 03:00:00, weight 0.24) in time 14:45:23 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:45:23 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:45:23 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:45:23 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:45: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'] 14:45:23 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:45:23 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:45:23 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:45:23 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:45:23 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.0682594 (min) 0.0803955 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.0031441 (min) 0.0932754 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:905: x_wind: -9.39119 (min) -8.08488 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:905: y_wind: 1.21904 (min) 2.38302 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:45:23 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.651825, mean: 2.038939, max: 2.303234 14:45:23 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:45:23 DEBUG opendrift.models.physics_methods:1058: min: 7.001830, mean: 7.769626, max: 8.267964 14:45:23 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 7.001830, mean: 7.769626, max: 8.267964 14:45:23 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:45:23 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:45:23 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:45:23 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:45:23 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:45:23 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:45:23 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:45:23 DEBUG opendrift.models.physics_methods:1058: min: 7.001831, mean: 7.769626, max: 8.267964 14:45:23 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:45:23 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.000956, dN_50: 0.000075 14:45:23 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:45:23 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.033786365929409354 14:45:23 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:45:23 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:45:23 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 632 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 628 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 622 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 617 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 615 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 612 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 605 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 8 of 601 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 593 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 587 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 12 of 580 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 568 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 561 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 556 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 9 of 552 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 544 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 539 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 538 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 538 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 535 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 531 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 526 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 520 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 517 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 510 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 509 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 503 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 8 of 501 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 493 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 490 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 484 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 480 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 475 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 8 of 473 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 465 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 458 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 456 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 454 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 450 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 449 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 443 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 440 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 440 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 437 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 436 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 433 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 430 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 7 of 427 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 420 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 416 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 417 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 413 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 411 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 410 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 407 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 405 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 404 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 402 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 399 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 394 surface elements 14:45:23 DEBUG opendrift.models.physics_methods:912: Advecting 399 of 6000 elements above 0.100m with wind-sheared ocean current (0.106306 m/s - 0.275234 m/s) 14:45:23 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:45:23 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0036066258604353536 and 0.4322542143635402 m/s 14:45:23 DEBUG opendrift.models.basemodel:2097: 6000 active elements (0 deactivated) 14:45:23 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:45:23 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:45:23 INFO opendrift.models.basemodel:2011: 2024-04-22 01:42:41.057477 - step 12 of 120 - 6000 active elements (0 deactivated) 14:45:23 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:45:23 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:45:23 DEBUG opendrift.models.basemodel:2030: 34.95846313189226 <- latitude -> 35.12284770923267 14:45:23 DEBUG opendrift.models.basemodel:2035: 23.41694566932919 <- longitude -> 23.56171090694674 14:45:23 DEBUG opendrift.models.basemodel:2040: -142.67954662244443 <- z -> 0.0 14:45:23 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:45:23 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:45:23 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:45:23 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:45:23 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:45:23 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:45:23 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:45:23 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements 14:45:23 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:45:23 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:45:23 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:45:23 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:45:23 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:45:23 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:45:23 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:45:23 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:45:23 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:45:23 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements 14:45:23 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:45:23 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:45:23 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:45:23 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:45:23 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:45:23 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:45:23 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:45:23 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:45:23 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:45:23 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:45:23 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 6000 elements 14:45:23 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:45:23 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-22 00:00:00 (before) 2024-04-22 03:00:00 (after) 14:45:23 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-22 00:00:00) in space (linearNDFast) 14:45:23 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:45:23 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-22 03:00:00) in space (linearNDFast) 14:45:23 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:45:23 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-22 00:00:00, weight 0.43) and after (2024-04-22 03:00:00, weight 0.57) in time 14:45:23 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:45:23 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:45:23 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:45:23 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:45:23 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:45: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 14:45:23 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:45:23 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:45: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 14:45:23 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:45:23 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-22 00:00:00 (before) 2024-04-22 03:00:00 (after) 14:45:23 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-22 00:00:00) in space (linearNDFast) 14:45:23 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:45:23 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-22 03:00:00) in space (linearNDFast) 14:45:23 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:45:23 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-22 00:00:00, weight 0.43) and after (2024-04-22 03:00:00, weight 0.57) in time 14:45:23 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:45:23 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:45:23 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:45:23 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:45: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'] 14:45:23 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:45:23 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:45:23 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:45:23 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:45:23 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.121074 (min) 0.0863335 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.000801494 (min) 0.0873881 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:905: x_wind: -9.83216 (min) -8.55081 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:905: y_wind: 1.40962 (min) 2.5831 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:45:23 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.847919, mean: 2.249048, max: 2.542257 14:45:23 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:45:23 DEBUG opendrift.models.physics_methods:1058: min: 7.405784, mean: 8.161358, max: 8.686389 14:45:23 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 7.405784, mean: 8.161358, max: 8.686389 14:45:23 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:45:23 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:45:23 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:45:23 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:45:23 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:45:23 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:45:23 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:45:23 DEBUG opendrift.models.physics_methods:1058: min: 7.405785, mean: 8.161358, max: 8.686390 14:45:23 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:45:23 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.000991, dN_50: 0.000078 14:45:23 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:45:23 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.03729218439335799 14:45:23 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:45:23 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:45:23 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 394 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 390 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 386 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 385 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 8 of 381 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 374 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 371 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 370 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 368 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 365 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 363 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 358 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 353 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 351 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 348 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 347 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 342 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 340 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 337 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 337 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 331 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 329 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 6 of 323 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 317 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 312 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 308 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 307 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 304 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 302 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 299 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 296 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 291 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 288 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 286 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 283 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 281 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 278 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 277 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 274 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 273 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 270 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 267 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 265 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 264 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 261 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 258 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 257 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 255 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 252 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 250 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 248 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 247 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 242 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 240 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 239 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 240 surface elements 14:45:23 DEBUG opendrift.models.physics_methods:912: Advecting 242 of 6000 elements above 0.100m with wind-sheared ocean current (0.030814 m/s - 0.287673 m/s) 14:45:23 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:45:23 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.002746716925772088 and 0.45041203473427394 m/s 14:45:23 DEBUG opendrift.models.basemodel:2097: 6000 active elements (0 deactivated) 14:45:23 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:45:23 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:45:23 INFO opendrift.models.basemodel:2011: 2024-04-22 02:42:41.057477 - step 13 of 120 - 6000 active elements (0 deactivated) 14:45:23 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:45:23 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:45:23 DEBUG opendrift.models.basemodel:2030: 34.95638509534222 <- latitude -> 35.12734327212511 14:45:23 DEBUG opendrift.models.basemodel:2035: 23.411785509249828 <- longitude -> 23.567544462721497 14:45:23 DEBUG opendrift.models.basemodel:2040: -141.84853539165482 <- z -> 0.0 14:45:23 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:45:23 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:45:23 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:45:23 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:45:23 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:45:23 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:45:23 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:45:23 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements 14:45:23 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:45:23 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:45:23 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:45:23 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:45:23 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:45:23 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:45:23 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:45:23 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:45:23 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:45:23 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements 14:45:23 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:45:23 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:45:23 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:45:23 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:45:23 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:45:23 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:45:23 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:45:23 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:45:23 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:45:23 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:45:23 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 6000 elements 14:45:23 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:45:23 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-22 00:00:00 (before) 2024-04-22 03:00:00 (after) 14:45:23 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-22 00:00:00) in space (linearNDFast) 14:45:23 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:45:23 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-22 03:00:00) in space (linearNDFast) 14:45:23 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:45:23 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-22 00:00:00, weight 0.10) and after (2024-04-22 03:00:00, weight 0.90) in time 14:45:23 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:45:23 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:45:23 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:45:23 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:45:23 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:45: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 14:45:23 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:45:23 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:45: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 14:45:23 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:45:23 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-22 00:00:00 (before) 2024-04-22 03:00:00 (after) 14:45:23 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-22 00:00:00) in space (linearNDFast) 14:45:23 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:45:23 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-22 03:00:00) in space (linearNDFast) 14:45:23 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:45:23 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-22 00:00:00, weight 0.10) and after (2024-04-22 03:00:00, weight 0.90) in time 14:45:23 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:45:23 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:45:23 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:45:23 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:45: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'] 14:45:23 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:45:23 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:45:23 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:45:23 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:45:23 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.177669 (min) 0.0980252 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.0128715 (min) 0.0932332 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:905: x_wind: -10.2877 (min) -9.02398 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:905: y_wind: 1.49831 (min) 2.7899 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:45:23 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:45:23 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 2.058459, mean: 2.474212, max: 2.795035 14:45:23 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:45:23 DEBUG opendrift.models.physics_methods:1058: min: 7.816290, mean: 8.561390, max: 9.108004 14:45:23 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 7.816290, mean: 8.561390, max: 9.108004 14:45:23 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:45:23 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:45:23 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:45:23 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:45:23 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:45:23 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:45:23 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:45:23 DEBUG opendrift.models.physics_methods:1058: min: 7.816290, mean: 8.561390, max: 9.108005 14:45:23 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:45:23 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.001045, dN_50: 0.000082 14:45:23 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:45:23 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.04099974911249204 14:45:23 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:45:23 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:45:23 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 236 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 235 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 232 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 229 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 226 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 224 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 223 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 221 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 218 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 218 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 218 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 215 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 216 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 211 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 208 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 203 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 201 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 201 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 200 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 200 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 5 of 198 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 193 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 191 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 189 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 188 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 186 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 183 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 185 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 184 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 182 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 180 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 179 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 177 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 174 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 171 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 170 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 172 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 171 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 169 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 166 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 165 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 163 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 161 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 159 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 156 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 155 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 155 surface elements 14:45:23 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 153 surface elements 14:45:23 DEBUG opendrift.models.physics_methods:912: Advecting 162 of 6000 elements above 0.100m with wind-sheared ocean current (0.015541 m/s - 0.296651 m/s) 14:45:23 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:45:23 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0031794033224070706 and 0.41406711411002206 m/s 14:45:23 DEBUG opendrift.models.basemodel:2097: 6000 active elements (0 deactivated) 14:45:23 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:45:23 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:45:23 INFO opendrift.models.basemodel:2011: 2024-04-22 03:42:41.057477 - step 14 of 120 - 6000 active elements (0 deactivated) 14:45:23 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:45:23 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:45:23 DEBUG opendrift.models.basemodel:2030: 34.94978229388352 <- latitude -> 35.13311768684074 14:45:23 DEBUG opendrift.models.basemodel:2035: 23.39339523349181 <- longitude -> 23.56978782376088 14:45:23 DEBUG opendrift.models.basemodel:2040: -140.87057633442043 <- z -> 0.0 14:45:23 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:45:23 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:45:23 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:45:23 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:45:23 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:45:23 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:45:23 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:45:23 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements 14:45:23 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:45:23 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:45:23 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:45:23 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:45:23 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:45:23 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:45:23 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:45:23 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:45:23 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:45:23 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements 14:45:23 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:45:23 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:45:23 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:45:23 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:45:23 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:45:23 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:45:23 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:45:23 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:45:23 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:45:23 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:45:23 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 6000 elements 14:45:23 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:45:23 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-22 03:00:00 (before) 2024-04-22 06:00:00 (after) 14:45:23 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity 14:45:31 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_sea_water_velocity to retrieve y_sea_water_velocity 14:45:37 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:45:37 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values 14:45:37 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values 14:45:37 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity'] 14:45:37 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 10x13x23) for time after (2024-04-22 06:00:00) 14:45:37 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-22 03:00:00) in space (linearNDFast) 14:45:37 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:45:37 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-22 06:00:00) in space (linearNDFast) 14:45:37 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:45:37 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-22 03:00:00, weight 0.76) and after (2024-04-22 06:00:00, weight 0.24) in time 14:45:37 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:45:37 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:45:37 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:45:37 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:45:37 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:45: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 14:45:37 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:45:37 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:45: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 6000 elements 14:45:37 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:45:37 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-22 03:00:00 (before) 2024-04-22 06:00:00 (after) 14:45:37 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_wind to retrieve x_wind 14:45:37 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_wind to retrieve y_wind 14:45:38 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:45:38 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values 14:45:38 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values 14:45:38 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 7x7x1) for time after (2024-04-22 06:00:00) 14:45:38 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-22 03:00:00) in space (linearNDFast) 14:45:38 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:45:38 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-22 06:00:00) in space (linearNDFast) 14:45:38 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:45:38 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-22 03:00:00, weight 0.76) and after (2024-04-22 06:00:00, weight 0.24) in time 14:45:38 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:45:38 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:45:38 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:45:38 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:45:38 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'] 14:45:38 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:45:38 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:45:38 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:45:38 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:45:38 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.216843 (min) 0.0955911 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.00815452 (min) 0.125347 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:905: x_wind: -10.981 (min) -9.6197 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:905: y_wind: 1.41617 (min) 2.69612 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:45:38 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 2.325788, mean: 2.794511, max: 3.145169 14:45:38 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:45:38 DEBUG opendrift.models.physics_methods:1058: min: 8.308348, mean: 9.099802, max: 9.661655 14:45:38 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 8.308348, mean: 9.099802, max: 9.661655 14:45:38 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:45:38 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:45:38 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:45:38 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:45:38 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:45:38 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:45:38 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:45:38 DEBUG opendrift.models.physics_methods:1058: min: 8.308348, mean: 9.099802, max: 9.661655 14:45:38 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:45:38 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.001103, dN_50: 0.000087 14:45:38 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:45:38 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.04613526185989174 14:45:38 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:45:38 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:45:38 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 151 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 151 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 150 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 148 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 149 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 149 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 147 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 143 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 142 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 141 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 137 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 139 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 138 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 137 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 135 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 134 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 134 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 133 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 132 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 130 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 128 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 127 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 126 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 125 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 124 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 122 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 121 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 119 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 118 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 117 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 118 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 116 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 115 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 116 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 116 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 115 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 113 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 113 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 112 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 110 surface elements 14:45:38 DEBUG opendrift.models.physics_methods:912: Advecting 124 of 6000 elements above 0.100m with wind-sheared ocean current (0.027464 m/s - 0.316796 m/s) 14:45:38 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:45:38 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0009287328801532704 and 0.4216900599101886 m/s 14:45:38 DEBUG opendrift.models.basemodel:2097: 6000 active elements (0 deactivated) 14:45:38 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:45:38 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:45:38 INFO opendrift.models.basemodel:2011: 2024-04-22 04:42:41.057477 - step 15 of 120 - 6000 active elements (0 deactivated) 14:45:38 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:45:38 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:45:38 DEBUG opendrift.models.basemodel:2030: 34.95082395256871 <- latitude -> 35.13677229719814 14:45:38 DEBUG opendrift.models.basemodel:2035: 23.369654482829507 <- longitude -> 23.578015462938023 14:45:38 DEBUG opendrift.models.basemodel:2040: -140.06001599021528 <- z -> 0.0 14:45:38 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:45:38 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:45:38 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:45:38 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:45:38 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:45:38 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:45:38 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:45:38 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements 14:45:38 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:45:38 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:45:38 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:45:38 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:45:38 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:45:38 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:45:38 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:45:38 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:45:38 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:45:38 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements 14:45:38 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:45:38 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:45:38 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:45:38 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:45:38 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:45:38 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:45:38 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:45:38 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:45:38 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:45:38 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:45:38 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 6000 elements 14:45:38 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:45:38 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-22 03:00:00 (before) 2024-04-22 06:00:00 (after) 14:45:38 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-22 03:00:00) in space (linearNDFast) 14:45:38 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:45:38 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-22 06:00:00) in space (linearNDFast) 14:45:38 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:45:38 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-22 03:00:00, weight 0.43) and after (2024-04-22 06:00:00, weight 0.57) in time 14:45:38 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:45:38 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:45:38 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:45:38 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:45:38 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:45:38 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd 14:45:38 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:45:38 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:45:38 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 14:45:38 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:45:38 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-22 03:00:00 (before) 2024-04-22 06:00:00 (after) 14:45:38 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-22 03:00:00) in space (linearNDFast) 14:45:38 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:45:38 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-22 06:00:00) in space (linearNDFast) 14:45:38 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:45:38 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-22 03:00:00, weight 0.43) and after (2024-04-22 06:00:00, weight 0.57) in time 14:45:38 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:45:38 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:45:38 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:45:38 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:45:38 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'] 14:45:38 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:45:38 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:45:38 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:45:38 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:45:38 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.248663 (min) 0.087515 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.023856 (min) 0.164229 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:905: x_wind: -11.7705 (min) -10.3354 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:905: y_wind: 1.34021 (min) 2.46898 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:45:38 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 2.671947, mean: 3.174731, max: 3.558139 14:45:38 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:45:38 DEBUG opendrift.models.physics_methods:1058: min: 8.905197, mean: 9.699971, max: 10.276400 14:45:38 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 8.905197, mean: 9.699971, max: 10.276400 14:45:38 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:45:38 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:45:38 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:45:38 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:45:38 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:45:38 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:45:38 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:45:38 DEBUG opendrift.models.physics_methods:1058: min: 8.905196, mean: 9.699971, max: 10.276401 14:45:38 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:45:38 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.001180, dN_50: 0.000093 14:45:38 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:45:38 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.05219240204419198 14:45:38 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:45:38 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:45:38 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 108 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 107 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 106 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 105 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 105 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 103 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 102 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 100 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 97 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 96 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 95 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 94 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 94 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 92 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 92 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 91 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 92 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 89 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 88 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 88 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 86 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 87 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 86 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 82 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 82 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 81 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 79 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 78 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 77 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 77 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 76 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 76 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 75 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 74 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 73 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 72 surface elements 14:45:38 DEBUG opendrift.models.physics_methods:912: Advecting 84 of 6000 elements above 0.100m with wind-sheared ocean current (0.015376 m/s - 0.339061 m/s) 14:45:38 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:45:38 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0022698091366354493 and 0.47120611393306744 m/s 14:45:38 DEBUG opendrift.models.basemodel:2097: 6000 active elements (0 deactivated) 14:45:38 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:45:38 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:45:38 INFO opendrift.models.basemodel:2011: 2024-04-22 05:42:41.057477 - step 16 of 120 - 6000 active elements (0 deactivated) 14:45:38 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:45:38 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:45:38 DEBUG opendrift.models.basemodel:2030: 34.94912793963804 <- latitude -> 35.14050364865616 14:45:38 DEBUG opendrift.models.basemodel:2035: 23.35361687655168 <- longitude -> 23.580195238942483 14:45:38 DEBUG opendrift.models.basemodel:2040: -139.20771206056241 <- z -> 0.0 14:45:38 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:45:38 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:45:38 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:45:38 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:45:38 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:45:38 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:45:38 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:45:38 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements 14:45:38 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:45:38 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:45:38 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:45:38 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:45:38 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:45:38 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:45:38 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:45:38 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:45:38 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:45:38 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements 14:45:38 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:45:38 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:45:38 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:45:38 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:45:38 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:45:38 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:45:38 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:45:38 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:45:38 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:45:38 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:45:38 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 6000 elements 14:45:38 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:45:38 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-22 03:00:00 (before) 2024-04-22 06:00:00 (after) 14:45:38 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-22 03:00:00) in space (linearNDFast) 14:45:38 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:45:38 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-22 06:00:00) in space (linearNDFast) 14:45:38 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:45:38 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-22 03:00:00, weight 0.10) and after (2024-04-22 06:00:00, weight 0.90) in time 14:45:38 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:45:38 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:45:38 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:45:38 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:45:38 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:45:38 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd 14:45:38 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:45:38 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:45:38 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 14:45:38 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:45:38 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-22 03:00:00 (before) 2024-04-22 06:00:00 (after) 14:45:38 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-22 03:00:00) in space (linearNDFast) 14:45:38 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:45:38 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-22 06:00:00) in space (linearNDFast) 14:45:38 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:45:38 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-22 03:00:00, weight 0.10) and after (2024-04-22 06:00:00, weight 0.90) in time 14:45:38 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:45:38 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:45:38 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:45:38 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:45:38 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'] 14:45:38 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:45:38 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:45:38 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:45:38 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:45:38 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.273533 (min) 0.0807524 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.0424298 (min) 0.199958 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:905: x_wind: -12.5537 (min) -11.009 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:905: y_wind: 1.22887 (min) 2.24327 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:45:38 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:45:38 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 3.019185, mean: 3.583108, max: 3.999775 14:45:38 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:45:38 DEBUG opendrift.models.physics_methods:1058: min: 9.466173, mean: 10.305514, max: 10.895506 14:45:38 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 9.466173, mean: 10.305514, max: 10.895506 14:45:38 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:45:38 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:45:38 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:45:38 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:45:38 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:45:38 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:45:38 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:45:38 DEBUG opendrift.models.physics_methods:1058: min: 9.466173, mean: 10.305514, max: 10.895506 14:45:38 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:45:38 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.001286, dN_50: 0.000101 14:45:38 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:45:38 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.058670010574081694 14:45:38 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:45:38 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:45:38 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 73 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 71 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 70 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 68 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 69 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 67 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 67 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 65 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 65 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 65 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 64 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 61 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 61 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 60 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 59 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 60 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 60 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 60 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 60 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 59 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 59 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 59 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 57 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 57 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 56 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 55 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 53 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 53 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 54 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 53 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 52 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 51 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 51 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 50 surface elements 14:45:38 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 51 surface elements 14:45:38 DEBUG opendrift.models.physics_methods:912: Advecting 66 of 6000 elements above 0.100m with wind-sheared ocean current (0.015376 m/s - 0.361639 m/s) 14:45:38 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:45:38 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0014141304776901593 and 0.488578492022291 m/s 14:45:38 DEBUG opendrift.models.basemodel:2097: 6000 active elements (0 deactivated) 14:45:38 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:45:38 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:45:38 INFO opendrift.models.basemodel:2011: 2024-04-22 06:42:41.057477 - step 17 of 120 - 6000 active elements (0 deactivated) 14:45:38 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:45:38 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:45:38 DEBUG opendrift.models.basemodel:2030: 34.9511616693335 <- latitude -> 35.14985456870529 14:45:38 DEBUG opendrift.models.basemodel:2035: 23.319863926515797 <- longitude -> 23.58350977121413 14:45:38 DEBUG opendrift.models.basemodel:2040: -138.4544455275185 <- z -> 0.0 14:45:38 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:45:38 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:45:38 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:45:38 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:45:38 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:45:38 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:45:38 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:45:38 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements 14:45:38 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:45:38 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:45:38 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:45:38 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:45:38 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:45:38 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:45:38 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:45:38 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:45:38 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:45:38 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements 14:45:38 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:45:38 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:45:38 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:45:38 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:45:38 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:45:38 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:45:38 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:45:38 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:45:38 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:45:38 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:45:38 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 6000 elements 14:45:38 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:45:38 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-22 06:00:00 (before) 2024-04-22 09:00:00 (after) 14:45:38 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity 14:45:47 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_sea_water_velocity to retrieve y_sea_water_velocity 14:46:06 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:46:06 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values 14:46:06 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values 14:46:06 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity'] 14:46:06 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 11x13x23) for time after (2024-04-22 09:00:00) 14:46:06 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-22 06:00:00) in space (linearNDFast) 14:46:06 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:46:06 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-22 09:00:00) in space (linearNDFast) 14:46:06 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:46:06 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-22 06:00:00, weight 0.76) and after (2024-04-22 09:00:00, weight 0.24) in time 14:46:06 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:46:06 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:46:06 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:46:06 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:46:06 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:46: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 14:46:06 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:46:06 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:46: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 14:46:06 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:46:06 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-22 06:00:00 (before) 2024-04-22 09:00:00 (after) 14:46:06 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_wind to retrieve x_wind 14:46:06 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_wind to retrieve y_wind 14:46:06 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:46:06 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values 14:46:06 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values 14:46:06 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 7x7x1) for time after (2024-04-22 09:00:00) 14:46:06 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-22 06:00:00) in space (linearNDFast) 14:46:06 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:46:06 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-22 09:00:00) in space (linearNDFast) 14:46:06 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:46:06 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-22 06:00:00, weight 0.76) and after (2024-04-22 09:00:00, weight 0.24) in time 14:46:06 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:46:06 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:46:06 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:46:06 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:46:06 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'] 14:46:06 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:46:06 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:46:06 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:46:06 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:46:06 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.288736 (min) 0.0680666 (max) 14:46:06 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.0506446 (min) 0.25774 (max) 14:46:06 DEBUG opendrift.models.basemodel.environment:905: x_wind: -13.1957 (min) -11.3602 (max) 14:46:06 DEBUG opendrift.models.basemodel.environment:905: y_wind: 1.70157 (min) 2.39855 (max) 14:46:06 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:46:06 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:46:06 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:46:06 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:46:06 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:46:06 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:46:06 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:46:06 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:46:06 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:46:06 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:46:06 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:46:06 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:46:06 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:46:06 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:46:06 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:46:06 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:46:06 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:46:06 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 3.261715, mean: 3.923096, max: 4.422016 14:46:06 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:46:06 DEBUG opendrift.models.physics_methods:1058: min: 9.839037, mean: 10.782121, max: 11.456177 14:46:06 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 9.839037, mean: 10.782121, max: 11.456177 14:46:06 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:46:06 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:46:06 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:46:07 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:46:07 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:46:07 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:46:07 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:46:07 DEBUG opendrift.models.physics_methods:1058: min: 9.839037, mean: 10.782121, max: 11.456177 14:46:07 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:46:07 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.001439, dN_50: 0.000113 14:46:07 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:46:07 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.06486313019525601 14:46:07 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:46:07 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:46:07 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 51 surface elements 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 49 surface elements 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 50 surface elements 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 52 surface elements 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 51 surface elements 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 51 surface elements 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 53 surface elements 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 53 surface elements 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 52 surface elements 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 51 surface elements 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 57 surface elements 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 3 of 57 surface elements 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 55 surface elements 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 55 surface elements 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 56 surface elements 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 4 of 59 surface elements 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 56 surface elements 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 56 surface elements 14:46:07 DEBUG opendrift.models.physics_methods:912: Advecting 61 of 6000 elements above 0.100m with wind-sheared ocean current (0.152603 m/s - 0.380454 m/s) 14:46:07 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:46:07 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0021357948655367355 and 0.4392192819433471 m/s 14:46:07 DEBUG opendrift.models.basemodel:2097: 6000 active elements (0 deactivated) 14:46:07 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:46:07 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:46:07 INFO opendrift.models.basemodel:2011: 2024-04-22 07:42:41.057477 - step 18 of 120 - 6000 active elements (0 deactivated) 14:46:07 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:46:07 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:46:07 DEBUG opendrift.models.basemodel:2030: 34.95217330884306 <- latitude -> 35.16124367753338 14:46:07 DEBUG opendrift.models.basemodel:2035: 23.30527344572879 <- longitude -> 23.588098276743377 14:46:07 DEBUG opendrift.models.basemodel:2040: -137.56344039185325 <- z -> 0.0 14:46:07 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:46:07 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:46:07 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:46:07 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:46:07 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:46:07 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:46:07 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:46:07 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements 14:46:07 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:46:07 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:46:07 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:46:07 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:46:07 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:46:07 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:46:07 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:46:07 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:46:07 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:46:07 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements 14:46:07 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:46:07 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:46:07 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:46:07 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:46:07 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:46:07 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:46:07 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:46:07 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:46:07 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:46:07 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:46:07 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 6000 elements 14:46:07 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:46:07 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-22 06:00:00 (before) 2024-04-22 09:00:00 (after) 14:46:07 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-22 06:00:00) in space (linearNDFast) 14:46:07 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:46:07 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-22 09:00:00) in space (linearNDFast) 14:46:07 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:46:07 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-22 06:00:00, weight 0.43) and after (2024-04-22 09:00:00, weight 0.57) in time 14:46:07 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:46:07 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:46:07 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:46:07 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:46:07 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:46: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 14:46:07 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:46:07 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:46: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 14:46:07 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:46:07 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-22 06:00:00 (before) 2024-04-22 09:00:00 (after) 14:46:07 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-22 06:00:00) in space (linearNDFast) 14:46:07 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:46:07 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-22 09:00:00) in space (linearNDFast) 14:46:07 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:46:07 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-22 06:00:00, weight 0.43) and after (2024-04-22 09:00:00, weight 0.57) in time 14:46:07 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:46:07 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:46:07 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:46:07 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:46: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'] 14:46:07 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:46:07 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:46:07 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:46:07 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:46:07 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.327792 (min) 0.05514 (max) 14:46:07 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.0563575 (min) 0.3122 (max) 14:46:07 DEBUG opendrift.models.basemodel.environment:905: x_wind: -13.7622 (min) -11.5123 (max) 14:46:07 DEBUG opendrift.models.basemodel.environment:905: y_wind: 2.14838 (min) 3.48127 (max) 14:46:07 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:46:07 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:46:07 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:46:07 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:46:07 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:46:07 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:46:07 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:46:07 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:46:07 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:46:07 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:46:07 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:46:07 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:46:07 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:46:07 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:46:07 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:46:07 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:46:07 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:46:07 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 3.456995, mean: 4.242293, max: 4.833732 14:46:07 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:46:07 DEBUG opendrift.models.physics_methods:1058: min: 10.129288, mean: 11.210370, max: 11.977629 14:46:07 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 10.129288, mean: 11.210370, max: 11.977629 14:46:07 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:46:07 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:46:07 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:46:07 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:46:07 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:46:07 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:46:07 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:46:07 DEBUG opendrift.models.physics_methods:1058: min: 10.129288, mean: 11.210370, max: 11.977629 14:46:07 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:46:07 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.001628, dN_50: 0.000128 14:46:07 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:46:07 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.0709018807728064 14:46:07 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:46:07 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:46:07 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 56 surface elements 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 55 surface elements 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 54 surface elements 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 53 surface elements 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 55 surface elements 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 54 surface elements 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 54 surface elements 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 53 surface elements 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 52 surface elements 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 51 surface elements 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 50 surface elements 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 50 surface elements 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 49 surface elements 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 49 surface elements 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 50 surface elements 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 52 surface elements 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 52 surface elements 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 51 surface elements 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 50 surface elements 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 49 surface elements 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 52 surface elements 14:46:07 DEBUG opendrift.models.physics_methods:912: Advecting 63 of 6000 elements above 0.100m with wind-sheared ocean current (0.028308 m/s - 0.395653 m/s) 14:46:07 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:46:07 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0015994281269202948 and 0.4697421923561874 m/s 14:46:07 DEBUG opendrift.models.basemodel:2097: 6000 active elements (0 deactivated) 14:46:07 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:46:07 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:46:07 INFO opendrift.models.basemodel:2011: 2024-04-22 08:42:41.057477 - step 19 of 120 - 6000 active elements (0 deactivated) 14:46:07 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:46:07 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:46:07 DEBUG opendrift.models.basemodel:2030: 34.95026059623679 <- latitude -> 35.16647638004722 14:46:07 DEBUG opendrift.models.basemodel:2035: 23.299727589456754 <- longitude -> 23.58825200168269 14:46:07 DEBUG opendrift.models.basemodel:2040: -136.82587683759039 <- z -> 0.0 14:46:07 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:46:07 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:46:07 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:46:07 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:46:07 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:46:07 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:46:07 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:46:07 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements 14:46:07 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:46:07 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:46:07 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:46:07 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:46:07 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:46:07 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:46:07 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:46:07 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:46:07 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:46:07 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements 14:46:07 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:46:07 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:46:07 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:46:07 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:46:07 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:46:07 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:46:07 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:46:07 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:46:07 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:46:07 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:46:07 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 6000 elements 14:46:07 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:46:07 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-22 06:00:00 (before) 2024-04-22 09:00:00 (after) 14:46:07 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-22 06:00:00) in space (linearNDFast) 14:46:07 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:46:07 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-22 09:00:00) in space (linearNDFast) 14:46:07 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:46:07 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-22 06:00:00, weight 0.10) and after (2024-04-22 09:00:00, weight 0.90) in time 14:46:07 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:46:07 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:46:07 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:46:07 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:46:07 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:46: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 14:46:07 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:46:07 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:46: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 14:46:07 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:46:07 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-22 06:00:00 (before) 2024-04-22 09:00:00 (after) 14:46:07 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-22 06:00:00) in space (linearNDFast) 14:46:07 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:46:07 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-22 09:00:00) in space (linearNDFast) 14:46:07 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:46:07 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-22 06:00:00, weight 0.10) and after (2024-04-22 09:00:00, weight 0.90) in time 14:46:07 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:46:07 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:46:07 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:46:07 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:46: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'] 14:46:07 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:46:07 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:46:07 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:46:07 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:46:07 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.359643 (min) 0.0442529 (max) 14:46:07 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.064905 (min) 0.384443 (max) 14:46:07 DEBUG opendrift.models.basemodel.environment:905: x_wind: -14.3331 (min) -11.6123 (max) 14:46:07 DEBUG opendrift.models.basemodel.environment:905: y_wind: 2.44012 (min) 4.63335 (max) 14:46:07 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:46:07 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:46:07 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:46:07 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:46:07 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:46:07 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:46:07 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:46:07 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:46:07 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:46:07 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:46:07 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:46:07 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:46:07 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:46:07 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:46:07 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:46:07 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:46:07 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:46:07 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 3.649869, mean: 4.579344, max: 5.273797 14:46:07 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:46:07 DEBUG opendrift.models.physics_methods:1058: min: 10.408024, mean: 11.645363, max: 12.510978 14:46:07 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 10.408024, mean: 11.645363, max: 12.510978 14:46:07 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:46:07 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:46:07 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:46:07 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:46:07 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:46:07 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:46:07 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:46:07 DEBUG opendrift.models.physics_methods:1058: min: 10.408024, mean: 11.645363, max: 12.510978 14:46:07 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:46:07 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.001848, dN_50: 0.000145 14:46:07 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:46:07 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.07735642825634818 14:46:07 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:46:07 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:46:07 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 51 surface elements 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 52 surface elements 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 50 surface elements 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 49 surface elements 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 48 surface elements 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 47 surface elements 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 48 surface elements 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 47 surface elements 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 46 surface elements 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 46 surface elements 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 45 surface elements 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 45 surface elements 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 43 surface elements 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 42 surface elements 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 44 surface elements 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 42 surface elements 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 42 surface elements 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 41 surface elements 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 42 surface elements 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 42 surface elements 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 42 surface elements 14:46:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 41 surface elements 14:46:07 DEBUG opendrift.models.physics_methods:912: Advecting 55 of 6000 elements above 0.100m with wind-sheared ocean current (0.071696 m/s - 0.415198 m/s) 14:46:07 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:46:07 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.00132774449349926 and 0.43011199849577236 m/s 14:46:07 DEBUG opendrift.models.basemodel:2097: 6000 active elements (0 deactivated) 14:46:07 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:46:07 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:46:07 INFO opendrift.models.basemodel:2011: 2024-04-22 09:42:41.057477 - step 20 of 120 - 6000 active elements (0 deactivated) 14:46:07 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:46:07 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:46:07 DEBUG opendrift.models.basemodel:2030: 34.94657520295239 <- latitude -> 35.175705685942255 14:46:07 DEBUG opendrift.models.basemodel:2035: 23.290605835217104 <- longitude -> 23.594346282098428 14:46:07 DEBUG opendrift.models.basemodel:2040: -135.90751127700273 <- z -> 0.0 14:46:07 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:46:07 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:46:07 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:46:07 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:46:07 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:46:07 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:46:07 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:46:07 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements 14:46:07 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:46:07 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:46:07 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:46:07 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:46:07 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:46:07 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:46:07 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:46:07 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:46:07 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:46:07 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements 14:46:07 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:46:07 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:46:07 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:46:07 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:46:07 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:46:07 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:46:07 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:46:07 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:46:07 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:46:07 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:46:07 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 6000 elements 14:46:07 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:46:07 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-22 09:00:00 (before) 2024-04-22 12:00:00 (after) 14:46:07 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity 14:46:15 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_sea_water_velocity to retrieve y_sea_water_velocity 14:46:19 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:46:19 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values 14:46:19 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values 14:46:19 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity'] 14:46:19 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 12x14x23) for time after (2024-04-22 12:00:00) 14:46:19 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-22 09:00:00) in space (linearNDFast) 14:46:19 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:46:19 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-22 12:00:00) in space (linearNDFast) 14:46:19 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:46:19 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-22 09:00:00, weight 0.76) and after (2024-04-22 12:00:00, weight 0.24) in time 14:46:19 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:46:19 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:46:19 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:46:19 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:46:19 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:46: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 14:46:19 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:46:19 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:46: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 14:46:19 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:46:19 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-22 09:00:00 (before) 2024-04-22 12:00:00 (after) 14:46:19 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_wind to retrieve x_wind 14:46:19 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_wind to retrieve y_wind 14:46:19 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:46:19 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values 14:46:19 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values 14:46:19 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 7x7x1) for time after (2024-04-22 12:00:00) 14:46:19 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-22 09:00:00) in space (linearNDFast) 14:46:19 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:46:19 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-22 12:00:00) in space (linearNDFast) 14:46:19 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:46:19 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-22 09:00:00, weight 0.76) and after (2024-04-22 12:00:00, weight 0.24) in time 14:46:19 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:46:19 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:46:19 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:46:19 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:46: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'] 14:46:19 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:46:19 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:46:19 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:46:19 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:46:19 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.366098 (min) 0.0364656 (max) 14:46:19 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.0705327 (min) 0.4415 (max) 14:46:19 DEBUG opendrift.models.basemodel.environment:905: x_wind: -14.6779 (min) -11.627 (max) 14:46:19 DEBUG opendrift.models.basemodel.environment:905: y_wind: 2.68707 (min) 5.36357 (max) 14:46:19 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:46:19 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:46:19 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:46:19 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:46:19 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:46:19 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:46:19 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:46:19 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:46:19 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:46:19 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:46:19 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:46:19 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:46:19 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:46:19 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:46:19 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:46:19 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:46:19 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:46:19 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 3.820668, mean: 4.820735, max: 5.563298 14:46:19 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:46:19 DEBUG opendrift.models.physics_methods:1058: min: 10.648766, mean: 11.947859, max: 12.849781 14:46:19 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 10.648766, mean: 11.947859, max: 12.849781 14:46:20 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:46:20 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:46:20 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:46:20 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:46:20 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:46:20 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:46:20 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:46:20 DEBUG opendrift.models.physics_methods:1058: min: 10.648766, mean: 11.947860, max: 12.849781 14:46:20 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:46:20 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.002071, dN_50: 0.000163 14:46:20 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:46:20 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.0816026434544808 14:46:20 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:46:20 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:46:20 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:46:20 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 40 surface elements 14:46:20 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 39 surface elements 14:46:20 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 39 surface elements 14:46:20 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 38 surface elements 14:46:20 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 37 surface elements 14:46:20 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 38 surface elements 14:46:20 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 39 surface elements 14:46:20 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 38 surface elements 14:46:20 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 38 surface elements 14:46:20 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 38 surface elements 14:46:20 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 39 surface elements 14:46:20 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 39 surface elements 14:46:20 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 38 surface elements 14:46:20 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 38 surface elements 14:46:20 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 37 surface elements 14:46:20 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 36 surface elements 14:46:20 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 35 surface elements 14:46:20 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 35 surface elements 14:46:20 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 34 surface elements 14:46:20 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 33 surface elements 14:46:20 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 32 surface elements 14:46:20 DEBUG opendrift.models.physics_methods:912: Advecting 51 of 6000 elements above 0.100m with wind-sheared ocean current (0.053487 m/s - 0.423137 m/s) 14:46:20 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:46:20 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.001962788596762018 and 0.4584055201733749 m/s 14:46:20 DEBUG opendrift.models.basemodel:2097: 6000 active elements (0 deactivated) 14:46:20 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:46:20 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:46:20 INFO opendrift.models.basemodel:2011: 2024-04-22 10:42:41.057477 - step 21 of 120 - 6000 active elements (0 deactivated) 14:46:20 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:46:20 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:46:20 DEBUG opendrift.models.basemodel:2030: 34.944459378068714 <- latitude -> 35.18391990000402 14:46:20 DEBUG opendrift.models.basemodel:2035: 23.278272836701227 <- longitude -> 23.5990438281064 14:46:20 DEBUG opendrift.models.basemodel:2040: -135.33366812768554 <- z -> 0.0 14:46:20 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:46:20 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:46:20 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:46:20 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:46:20 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:46:20 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:46:20 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:46:20 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements 14:46:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:46:20 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:46:20 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:46:20 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:46:20 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:46:20 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:46:20 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:46:20 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:46:20 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:46:20 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements 14:46:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:46:20 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:46:20 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:46:20 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:46:20 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:46:20 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:46:20 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:46:20 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:46:20 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:46:20 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:46:20 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 6000 elements 14:46:20 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:46:20 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-22 09:00:00 (before) 2024-04-22 12:00:00 (after) 14:46:20 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-22 09:00:00) in space (linearNDFast) 14:46:20 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:46:20 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-22 12:00:00) in space (linearNDFast) 14:46:20 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:46:20 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-22 09:00:00, weight 0.43) and after (2024-04-22 12:00:00, weight 0.57) in time 14:46:20 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:46:20 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:46:20 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:46:20 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:46:20 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:46: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 14:46:20 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:46:20 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:46: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 6000 elements 14:46:20 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:46:20 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-22 09:00:00 (before) 2024-04-22 12:00:00 (after) 14:46:20 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-22 09:00:00) in space (linearNDFast) 14:46:20 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:46:20 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-22 12:00:00) in space (linearNDFast) 14:46:20 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:46:20 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-22 09:00:00, weight 0.43) and after (2024-04-22 12:00:00, weight 0.57) in time 14:46:20 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:46:20 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:46:20 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:46:20 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:46: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'] 14:46:20 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:46:20 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:46:20 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:46:20 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:46:20 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.336212 (min) 0.0284616 (max) 14:46:20 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.0735273 (min) 0.506798 (max) 14:46:20 DEBUG opendrift.models.basemodel.environment:905: x_wind: -14.9188 (min) -11.6962 (max) 14:46:20 DEBUG opendrift.models.basemodel.environment:905: y_wind: 2.93385 (min) 5.94589 (max) 14:46:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:46:20 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:46:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:46:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:46:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:46:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:46:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:46:20 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:46:20 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:46:20 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:46:20 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:46:20 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:46:20 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:46:20 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:46:20 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:46:20 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:46:20 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:46:20 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 4.015368, mean: 5.021104, max: 5.784672 14:46:20 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:46:20 DEBUG opendrift.models.physics_methods:1058: min: 10.916722, mean: 12.193497, max: 13.102946 14:46:20 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 10.916722, mean: 12.193497, max: 13.102946 14:46:20 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:46:20 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:46:20 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:46:20 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:46:20 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:46:20 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:46:20 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:46:20 DEBUG opendrift.models.physics_methods:1058: min: 10.916722, mean: 12.193496, max: 13.102946 14:46:20 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:46:20 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.002119, dN_50: 0.000166 14:46:20 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:46:20 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.08484958660117067 14:46:20 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:46:20 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:46:20 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:46:20 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 32 surface elements 14:46:20 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 31 surface elements 14:46:20 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 29 surface elements 14:46:20 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 29 surface elements 14:46:20 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 28 surface elements 14:46:20 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 26 surface elements 14:46:20 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 26 surface elements 14:46:20 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 26 surface elements 14:46:20 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 26 surface elements 14:46:20 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 26 surface elements 14:46:20 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 25 surface elements 14:46:20 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 27 surface elements 14:46:20 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 26 surface elements 14:46:20 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 27 surface elements 14:46:20 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 26 surface elements 14:46:20 DEBUG opendrift.models.physics_methods:912: Advecting 42 of 6000 elements above 0.100m with wind-sheared ocean current (0.022540 m/s - 0.430403 m/s) 14:46:20 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:46:20 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0017110831770266116 and 0.47816703343356826 m/s 14:46:20 DEBUG opendrift.models.basemodel:2097: 6000 active elements (0 deactivated) 14:46:20 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:46:20 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:46:20 INFO opendrift.models.basemodel:2011: 2024-04-22 11:42:41.057477 - step 22 of 120 - 6000 active elements (0 deactivated) 14:46:20 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:46:20 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:46:20 DEBUG opendrift.models.basemodel:2030: 34.94294169049123 <- latitude -> 35.19662106634397 14:46:20 DEBUG opendrift.models.basemodel:2035: 23.267822305364195 <- longitude -> 23.59642797130615 14:46:20 DEBUG opendrift.models.basemodel:2040: -135.085846302201 <- z -> 0.0 14:46:20 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:46:20 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:46:20 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:46:20 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:46:20 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:46:20 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:46:20 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:46:20 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements 14:46:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:46:20 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:46:20 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:46:20 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:46:20 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:46:20 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:46:20 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:46:20 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:46:20 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:46:20 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements 14:46:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:46:20 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:46:20 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:46:20 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:46:20 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:46:20 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:46:20 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:46:20 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:46:20 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:46:20 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:46:20 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 6000 elements 14:46:20 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:46:20 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-22 09:00:00 (before) 2024-04-22 12:00:00 (after) 14:46:20 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-22 09:00:00) in space (linearNDFast) 14:46:20 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:46:20 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-22 12:00:00) in space (linearNDFast) 14:46:20 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:46:20 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-22 09:00:00, weight 0.10) and after (2024-04-22 12:00:00, weight 0.90) in time 14:46:20 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:46:20 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:46:20 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:46:20 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:46:20 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:46: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 14:46:20 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:46:20 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:46: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 6000 elements 14:46:20 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:46:20 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-22 09:00:00 (before) 2024-04-22 12:00:00 (after) 14:46:20 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-22 09:00:00) in space (linearNDFast) 14:46:20 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:46:20 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-22 12:00:00) in space (linearNDFast) 14:46:20 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:46:20 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-22 09:00:00, weight 0.10) and after (2024-04-22 12:00:00, weight 0.90) in time 14:46:20 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:46:20 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:46:20 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:46:20 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:46: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'] 14:46:20 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:46:20 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:46:20 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:46:20 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:46:20 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.311649 (min) 0.0208182 (max) 14:46:20 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.0778411 (min) 0.561669 (max) 14:46:20 DEBUG opendrift.models.basemodel.environment:905: x_wind: -15.1775 (min) -11.713 (max) 14:46:20 DEBUG opendrift.models.basemodel.environment:905: y_wind: 3.22576 (min) 6.59979 (max) 14:46:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:46:20 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:46:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:46:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:46:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:46:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:46:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:46:20 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:46:20 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:46:20 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:46:20 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:46:20 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:46:20 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:46:20 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:46:20 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:46:20 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:46:20 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:46:20 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 4.224075, mean: 5.226988, max: 6.023379 14:46:20 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:46:20 DEBUG opendrift.models.physics_methods:1058: min: 11.196837, mean: 12.440856, max: 13.370562 14:46:20 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 11.196837, mean: 12.440856, max: 13.370562 14:46:20 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:46:20 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:46:20 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:46:20 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:46:20 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:46:20 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:46:20 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:46:20 DEBUG opendrift.models.physics_methods:1058: min: 11.196837, mean: 12.440855, max: 13.370563 14:46:20 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:46:20 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.002160, dN_50: 0.000170 14:46:20 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:46:20 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.08835077593289874 14:46:20 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:46:20 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:46:20 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:46:20 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 25 surface elements 14:46:20 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 24 surface elements 14:46:20 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 24 surface elements 14:46:20 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 23 surface elements 14:46:20 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 23 surface elements 14:46:20 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 25 surface elements 14:46:20 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 24 surface elements 14:46:20 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 24 surface elements 14:46:20 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 23 surface elements 14:46:20 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 22 surface elements 14:46:20 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 22 surface elements 14:46:20 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 23 surface elements 14:46:20 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 22 surface elements 14:46:20 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 21 surface elements 14:46:20 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 21 surface elements 14:46:20 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 21 surface elements 14:46:20 DEBUG opendrift.models.physics_methods:912: Advecting 30 of 6000 elements above 0.100m with wind-sheared ocean current (0.013948 m/s - 0.428009 m/s) 14:46:20 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:46:20 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.001966970616291998 and 0.4229362125199181 m/s 14:46:20 DEBUG opendrift.models.basemodel:2097: 6000 active elements (0 deactivated) 14:46:20 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:46:20 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:46:20 INFO opendrift.models.basemodel:2011: 2024-04-22 12:42:41.057477 - step 23 of 120 - 6000 active elements (0 deactivated) 14:46:20 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:46:20 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:46:20 DEBUG opendrift.models.basemodel:2030: 34.93689000296769 <- latitude -> 35.20738931114388 14:46:20 DEBUG opendrift.models.basemodel:2035: 23.276095669485787 <- longitude -> 23.59843696151781 14:46:20 DEBUG opendrift.models.basemodel:2040: -133.83994237082308 <- z -> 0.0 14:46:20 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:46:20 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:46:20 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:46:20 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:46:20 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:46:20 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:46:20 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:46:20 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements 14:46:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:46:20 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:46:20 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:46:20 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:46:20 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:46:20 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:46:20 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:46:20 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:46:20 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:46:20 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements 14:46:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:46:20 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:46:20 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:46:20 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:46:20 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:46:20 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:46:20 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:46:20 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:46:20 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:46:20 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:46:20 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 6000 elements 14:46:20 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:46:20 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-22 12:00:00 (before) 2024-04-22 15:00:00 (after) 14:46:20 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity 14:46:43 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_sea_water_velocity to retrieve y_sea_water_velocity 14:46:47 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:46:47 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values 14:46:47 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values 14:46:47 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity'] 14:46:47 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 12x15x23) for time after (2024-04-22 15:00:00) 14:46:47 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-22 12:00:00) in space (linearNDFast) 14:46:47 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:46:47 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-22 15:00:00) in space (linearNDFast) 14:46:47 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:46:47 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-22 12:00:00, weight 0.76) and after (2024-04-22 15:00:00, weight 0.24) in time 14:46:47 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:46:47 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:46:47 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:46:47 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:46:47 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:46:47 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd 14:46:47 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:46:47 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:46:47 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 14:46:47 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:46:47 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-22 12:00:00 (before) 2024-04-22 15:00:00 (after) 14:46:47 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_wind to retrieve x_wind 14:46:47 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_wind to retrieve y_wind 14:46:47 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:46:47 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values 14:46:47 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values 14:46:47 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 7x7x1) for time after (2024-04-22 15:00:00) 14:46:47 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-22 12:00:00) in space (linearNDFast) 14:46:47 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:46:47 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-22 15:00:00) in space (linearNDFast) 14:46:47 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:46:47 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-22 12:00:00, weight 0.76) and after (2024-04-22 15:00:00, weight 0.24) in time 14:46:47 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:46:47 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:46:47 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:46:47 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:46: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'] 14:46:47 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:46:47 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:46:47 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:46:47 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:46:47 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.283536 (min) 0.053573 (max) 14:46:47 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.0788681 (min) 0.577485 (max) 14:46:47 DEBUG opendrift.models.basemodel.environment:905: x_wind: -15.4323 (min) -11.6818 (max) 14:46:47 DEBUG opendrift.models.basemodel.environment:905: y_wind: 2.94174 (min) 5.85146 (max) 14:46:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:46:47 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:46:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:46:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:46:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:46:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:46:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:46:47 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:46:47 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:46:47 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:46:47 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:46:47 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:46:47 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:46:47 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:46:47 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:46:47 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:46:47 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:46:47 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 3.933116, mean: 5.183354, max: 6.155785 14:46:47 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:46:47 DEBUG opendrift.models.physics_methods:1058: min: 10.804333, mean: 12.376701, max: 13.516719 14:46:47 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 10.804333, mean: 12.376701, max: 13.516719 14:46:48 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:46:48 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:46:48 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:46:48 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:46:48 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:46:48 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:46:48 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:46:48 DEBUG opendrift.models.physics_methods:1058: min: 10.804334, mean: 12.376700, max: 13.516719 14:46:48 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:46:48 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.002264, dN_50: 0.000178 14:46:48 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:46:48 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.0902927973794549 14:46:48 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:46:48 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:46:48 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:46:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 20 surface elements 14:46:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 19 surface elements 14:46:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 20 surface elements 14:46:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 20 surface elements 14:46:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 20 surface elements 14:46:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 19 surface elements 14:46:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 18 surface elements 14:46:48 DEBUG opendrift.models.physics_methods:912: Advecting 32 of 6000 elements above 0.100m with wind-sheared ocean current (0.031944 m/s - 0.424211 m/s) 14:46:48 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:46:48 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.002759402245452866 and 0.4665936127275161 m/s 14:46:48 DEBUG opendrift.models.basemodel:2097: 6000 active elements (0 deactivated) 14:46:48 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:46:48 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:46:48 INFO opendrift.models.basemodel:2011: 2024-04-22 13:42:41.057477 - step 24 of 120 - 6000 active elements (0 deactivated) 14:46:48 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:46:48 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:46:48 DEBUG opendrift.models.basemodel:2030: 34.930968260606186 <- latitude -> 35.21722479685287 14:46:48 DEBUG opendrift.models.basemodel:2035: 23.267789605104095 <- longitude -> 23.598160177696787 14:46:48 DEBUG opendrift.models.basemodel:2040: -132.8588393463396 <- z -> 0.0 14:46:48 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:46:48 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:46:48 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:46:48 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:46:48 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:46:48 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:46:48 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:46:48 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements 14:46:48 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:46:48 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:46:48 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:46:48 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:46:48 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:46:48 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:46:48 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:46:48 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:46:48 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:46:48 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements 14:46:48 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:46:48 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:46:48 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:46:48 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:46:48 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:46:48 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:46:48 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:46:48 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:46:48 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:46:48 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:46:48 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 6000 elements 14:46:48 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:46:48 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-22 12:00:00 (before) 2024-04-22 15:00:00 (after) 14:46:48 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-22 12:00:00) in space (linearNDFast) 14:46:48 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:46:48 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-22 15:00:00) in space (linearNDFast) 14:46:48 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:46:48 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-22 12:00:00, weight 0.43) and after (2024-04-22 15:00:00, weight 0.57) in time 14:46:48 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:46:48 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:46:48 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:46:48 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:46:48 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:46: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 14:46:48 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:46:48 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:46: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 14:46:48 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:46:48 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-22 12:00:00 (before) 2024-04-22 15:00:00 (after) 14:46:48 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-22 12:00:00) in space (linearNDFast) 14:46:48 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:46:48 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-22 15:00:00) in space (linearNDFast) 14:46:48 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:46:48 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-22 12:00:00, weight 0.43) and after (2024-04-22 15:00:00, weight 0.57) in time 14:46:48 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:46:48 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:46:48 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:46:48 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:46: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'] 14:46:48 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:46:48 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:46:48 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:46:48 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:46:48 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.191614 (min) 0.0890232 (max) 14:46:48 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.0828652 (min) 0.570286 (max) 14:46:48 DEBUG opendrift.models.basemodel.environment:905: x_wind: -15.6961 (min) -11.5545 (max) 14:46:48 DEBUG opendrift.models.basemodel.environment:905: y_wind: 2.45087 (min) 4.52493 (max) 14:46:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:46:48 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:46:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:46:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:46:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:46:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:46:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:46:48 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:46:48 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:46:48 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:46:48 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:46:48 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:46:48 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:46:48 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:46:48 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:46:48 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:46:48 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:46:48 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 3.505034, mean: 5.061543, max: 6.266177 14:46:48 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:46:48 DEBUG opendrift.models.physics_methods:1058: min: 10.199426, mean: 12.207243, max: 13.637378 14:46:48 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 10.199426, mean: 12.207243, max: 13.637378 14:46:48 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:46:48 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:46:48 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:46:48 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:46:48 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:46:48 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:46:48 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:46:48 DEBUG opendrift.models.physics_methods:1058: min: 10.199426, mean: 12.207242, max: 13.637379 14:46:48 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:46:48 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.002400, dN_50: 0.000188 14:46:48 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:46:48 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.09191195712591045 14:46:48 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:46:48 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:46:48 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:46:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 20 surface elements 14:46:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 24 surface elements 14:46:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 25 surface elements 14:46:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 26 surface elements 14:46:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 28 surface elements 14:46:48 DEBUG opendrift.models.physics_methods:912: Advecting 48 of 6000 elements above 0.100m with wind-sheared ocean current (0.026487 m/s - 0.409052 m/s) 14:46:48 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:46:48 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0016767608448967815 and 0.40852461745888013 m/s 14:46:48 DEBUG opendrift.models.basemodel:2097: 6000 active elements (0 deactivated) 14:46:48 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:46:48 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:46:48 INFO opendrift.models.basemodel:2011: 2024-04-22 14:42:41.057477 - step 25 of 120 - 6000 active elements (0 deactivated) 14:46:48 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:46:48 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:46:48 DEBUG opendrift.models.basemodel:2030: 34.92725086978307 <- latitude -> 35.23169906346241 14:46:48 DEBUG opendrift.models.basemodel:2035: 23.27112930453539 <- longitude -> 23.598545958801022 14:46:48 DEBUG opendrift.models.basemodel:2040: -132.33166350230726 <- z -> 0.0 14:46:48 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:46:48 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:46:48 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:46:48 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:46:48 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:46:48 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:46:48 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:46:48 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements 14:46:48 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:46:48 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:46:48 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:46:48 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:46:48 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:46:48 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:46:48 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:46:48 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:46:48 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:46:48 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements 14:46:48 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:46:48 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:46:48 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:46:48 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:46:48 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:46:48 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:46:48 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:46:48 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:46:48 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:46:48 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:46:48 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 6000 elements 14:46:48 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:46:48 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-22 12:00:00 (before) 2024-04-22 15:00:00 (after) 14:46:48 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-22 12:00:00) in space (linearNDFast) 14:46:48 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:46:48 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-22 15:00:00) in space (linearNDFast) 14:46:48 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:46:48 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-22 12:00:00, weight 0.10) and after (2024-04-22 15:00:00, weight 0.90) in time 14:46:48 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:46:48 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:46:48 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:46:48 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:46:48 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:46: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 14:46:48 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:46:48 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:46: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 14:46:48 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:46:48 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-22 12:00:00 (before) 2024-04-22 15:00:00 (after) 14:46:48 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-22 12:00:00) in space (linearNDFast) 14:46:48 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:46:48 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-22 15:00:00) in space (linearNDFast) 14:46:48 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:46:48 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-22 12:00:00, weight 0.10) and after (2024-04-22 15:00:00, weight 0.90) in time 14:46:48 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:46:48 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:46:48 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:46:48 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:46: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'] 14:46:48 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:46:48 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:46:48 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:46:48 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:46:48 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.131055 (min) 0.122816 (max) 14:46:48 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.0903817 (min) 0.581639 (max) 14:46:48 DEBUG opendrift.models.basemodel.environment:905: x_wind: -15.9414 (min) -11.2763 (max) 14:46:48 DEBUG opendrift.models.basemodel.environment:905: y_wind: 0.849316 (min) 3.02471 (max) 14:46:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:46:48 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:46:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:46:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:46:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:46:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:46:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:46:48 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:46:48 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:46:48 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:46:48 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:46:48 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:46:48 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:46:48 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:46:48 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:46:48 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:46:48 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:46:48 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 3.151526, mean: 4.987625, max: 6.373968 14:46:48 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:46:48 DEBUG opendrift.models.physics_methods:1058: min: 9.671416, mean: 12.090847, max: 13.754174 14:46:48 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 9.671416, mean: 12.090847, max: 13.754174 14:46:48 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:46:48 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:46:48 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:46:48 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:46:48 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:46:48 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:46:48 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:46:48 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:46:48 DEBUG opendrift.models.physics_methods:1058: min: 9.671416, mean: 12.090846, max: 13.754174 14:46:48 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:46:48 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.002536, dN_50: 0.000199 14:46:48 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:46:48 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.09349295561786822 14:46:48 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:46:48 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:46:48 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:46:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 29 surface elements 14:46:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 29 surface elements 14:46:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 38 surface elements 14:46:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 39 surface elements 14:46:48 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 38 surface elements 14:46:48 DEBUG opendrift.models.physics_methods:912: Advecting 55 of 6000 elements above 0.100m with wind-sheared ocean current (0.013431 m/s - 0.398302 m/s) 14:46:48 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:46:48 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.001283620157565291 and 0.4184917083063707 m/s 14:46:48 DEBUG opendrift.models.basemodel:2097: 6000 active elements (0 deactivated) 14:46:48 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:46:48 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:46:48 INFO opendrift.models.basemodel:2011: 2024-04-22 15:42:41.057477 - step 26 of 120 - 6000 active elements (0 deactivated) 14:46:48 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:46:48 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:46:48 DEBUG opendrift.models.basemodel:2030: 34.92656679739747 <- latitude -> 35.24405856379757 14:46:48 DEBUG opendrift.models.basemodel:2035: 23.272550327242552 <- longitude -> 23.60189267798511 14:46:48 DEBUG opendrift.models.basemodel:2040: -131.86421041909117 <- z -> 0.0 14:46:48 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:46:48 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:46:48 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:46:48 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:46:48 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:46:48 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:46:48 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:46:48 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements 14:46:48 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:46:48 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:46:48 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:46:48 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:46:48 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:46:48 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:46:48 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:46:48 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:46:48 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:46:48 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements 14:46:48 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:46:48 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:46:48 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:46:48 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:46:48 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:46:48 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:46:48 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:46:48 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:46:48 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:46:48 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:46:48 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 6000 elements 14:46:48 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:46:48 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-22 15:00:00 (before) 2024-04-22 18:00:00 (after) 14:46:48 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity 14:46:55 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_sea_water_velocity to retrieve y_sea_water_velocity 14:47:00 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:47:00 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values 14:47:00 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values 14:47:00 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity'] 14:47:00 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 12x16x23) for time after (2024-04-22 18:00:00) 14:47:00 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-22 15:00:00) in space (linearNDFast) 14:47:00 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:47:00 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-22 18:00:00) in space (linearNDFast) 14:47:00 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:47:00 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-22 15:00:00, weight 0.76) and after (2024-04-22 18:00:00, weight 0.24) in time 14:47:00 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:47:00 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:47:00 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:47:00 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:47:00 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:47: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 14:47:00 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:47:00 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:47: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 14:47:00 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:47:00 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-22 15:00:00 (before) 2024-04-22 18:00:00 (after) 14:47:00 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_wind to retrieve x_wind 14:47:00 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_wind to retrieve y_wind 14:47:00 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:47:00 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values 14:47:00 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values 14:47:00 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 7x7x1) for time after (2024-04-22 18:00:00) 14:47:00 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-22 15:00:00) in space (linearNDFast) 14:47:00 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:47:00 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-22 18:00:00) in space (linearNDFast) 14:47:00 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:47:00 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-22 15:00:00, weight 0.76) and after (2024-04-22 18:00:00, weight 0.24) in time 14:47:00 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:47:00 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:47:00 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:47:00 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:47: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'] 14:47:00 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:47:00 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:47:00 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:47:00 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:47:00 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.0887336 (min) 0.142833 (max) 14:47:00 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.0867835 (min) 0.515172 (max) 14:47:00 DEBUG opendrift.models.basemodel.environment:905: x_wind: -16.0753 (min) -10.7913 (max) 14:47:00 DEBUG opendrift.models.basemodel.environment:905: y_wind: 0.536259 (min) 2.66109 (max) 14:47:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:47:00 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:47:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:47:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:47:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:47:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:47:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:47:00 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:47:00 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:47:00 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:47:00 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:47:00 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:47:00 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:47:00 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:47:00 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:47:00 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:47:00 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:47:00 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 2.873515, mean: 4.897445, max: 6.513753 14:47:00 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:47:00 DEBUG opendrift.models.physics_methods:1058: min: 9.234987, mean: 11.944942, max: 13.904175 14:47:00 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 9.234987, mean: 11.944942, max: 13.904175 14:47:00 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:47:00 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:47:00 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:47:00 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:47:00 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:47:00 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:47:00 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:47:00 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:47:00 DEBUG opendrift.models.physics_methods:1058: min: 9.234987, mean: 11.944942, max: 13.904175 14:47:00 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:47:00 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.002691, dN_50: 0.000211 14:47:00 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:47:00 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.09554321343850809 14:47:00 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:47:00 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:47:00 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:47:00 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 40 surface elements 14:47:00 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 39 surface elements 14:47:00 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 39 surface elements 14:47:00 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 42 surface elements 14:47:00 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 47 surface elements 14:47:00 DEBUG opendrift.models.physics_methods:912: Advecting 67 of 6000 elements above 0.100m with wind-sheared ocean current (0.008409 m/s - 0.386586 m/s) 14:47:00 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:47:00 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0002914579376952525 and 0.431620491407613 m/s 14:47:00 DEBUG opendrift.models.basemodel:2097: 6000 active elements (0 deactivated) 14:47:00 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:47:00 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:47:00 INFO opendrift.models.basemodel:2011: 2024-04-22 16:42:41.057477 - step 27 of 120 - 6000 active elements (0 deactivated) 14:47:00 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:47:00 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:47:00 DEBUG opendrift.models.basemodel:2030: 34.918517997973495 <- latitude -> 35.253266254264375 14:47:00 DEBUG opendrift.models.basemodel:2035: 23.27370964696103 <- longitude -> 23.59804680274991 14:47:00 DEBUG opendrift.models.basemodel:2040: -130.93134491102083 <- z -> 0.0 14:47:00 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:47:00 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:47:00 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:47:00 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:47:00 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:47:00 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:47:00 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:47:00 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements 14:47:00 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:47:00 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:47:00 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:47:00 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:47:00 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:47:00 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:47:00 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:47:00 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:47:00 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:47:00 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements 14:47:00 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:47:00 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:47:00 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:47:00 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:47:00 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:47:00 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:47:00 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:47:00 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:47:00 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:47:00 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:47:00 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 6000 elements 14:47:00 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:47:00 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-22 15:00:00 (before) 2024-04-22 18:00:00 (after) 14:47:00 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-22 15:00:00) in space (linearNDFast) 14:47:00 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:47:00 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-22 18:00:00) in space (linearNDFast) 14:47:00 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:47:00 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-22 15:00:00, weight 0.43) and after (2024-04-22 18:00:00, weight 0.57) in time 14:47:00 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:47:00 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:47:00 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:47:00 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:47:00 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:47: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 14:47:00 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:47:00 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:47: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 14:47:00 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:47:00 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-22 15:00:00 (before) 2024-04-22 18:00:00 (after) 14:47:00 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-22 15:00:00) in space (linearNDFast) 14:47:00 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:47:00 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-22 18:00:00) in space (linearNDFast) 14:47:00 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:47:00 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-22 15:00:00, weight 0.43) and after (2024-04-22 18:00:00, weight 0.57) in time 14:47:00 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:47:00 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:47:00 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:47:00 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:47: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'] 14:47:00 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:47:00 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:47:00 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:47:00 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:47:00 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.0956909 (min) 0.162189 (max) 14:47:00 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.0912136 (min) 0.444711 (max) 14:47:00 DEBUG opendrift.models.basemodel.environment:905: x_wind: -16.1566 (min) -10.2621 (max) 14:47:00 DEBUG opendrift.models.basemodel.environment:905: y_wind: 0.951642 (min) 3.25364 (max) 14:47:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:47:00 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:47:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:47:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:47:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:47:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:47:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:47:00 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:47:00 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:47:00 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:47:00 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:47:00 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:47:00 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:47:00 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:47:00 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:47:00 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:47:00 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:47:00 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 2.612915, mean: 4.801783, max: 6.664822 14:47:00 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:47:00 DEBUG opendrift.models.physics_methods:1058: min: 8.806275, mean: 11.779607, max: 14.064486 14:47:00 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 8.806275, mean: 11.779607, max: 14.064486 14:47:01 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:47:01 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:47:01 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:47:01 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:47:01 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:47:01 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:47:01 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:47:01 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:47:01 DEBUG opendrift.models.physics_methods:1058: min: 8.806274, mean: 11.779607, max: 14.064487 14:47:01 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:47:01 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.002869, dN_50: 0.000225 14:47:01 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:47:01 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.09775899887358543 14:47:01 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:47:01 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:47:01 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:47:01 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 45 surface elements 14:47:01 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 46 surface elements 14:47:01 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 46 surface elements 14:47:01 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 51 surface elements 14:47:01 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 50 surface elements 14:47:01 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 50 surface elements 14:47:01 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 51 surface elements 14:47:01 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 50 surface elements 14:47:01 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 51 surface elements 14:47:01 DEBUG opendrift.models.physics_methods:912: Advecting 61 of 6000 elements above 0.100m with wind-sheared ocean current (0.020593 m/s - 0.369676 m/s) 14:47:01 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:47:01 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0009935982174706624 and 0.41325183028232804 m/s 14:47:01 DEBUG opendrift.models.basemodel:2097: 6000 active elements (0 deactivated) 14:47:01 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:47:01 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:47:01 INFO opendrift.models.basemodel:2011: 2024-04-22 17:42:41.057477 - step 28 of 120 - 6000 active elements (0 deactivated) 14:47:01 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:47:01 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:47:01 DEBUG opendrift.models.basemodel:2030: 34.92198268951126 <- latitude -> 35.260799959563414 14:47:01 DEBUG opendrift.models.basemodel:2035: 23.274802769826852 <- longitude -> 23.598260693480334 14:47:01 DEBUG opendrift.models.basemodel:2040: -130.0910771543196 <- z -> 0.0 14:47:01 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:47:01 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:47:01 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:47:01 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:47:01 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:47:01 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:47:01 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:47:01 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements 14:47:01 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:47:01 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:47:01 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:47:01 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:47:01 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:47:01 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:47:01 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:47:01 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:47:01 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:47:01 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements 14:47:01 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:47:01 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:47:01 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:47:01 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:47:01 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:47:01 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:47:01 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:47:01 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:47:01 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:47:01 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:47:01 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 6000 elements 14:47:01 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:47:01 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-22 15:00:00 (before) 2024-04-22 18:00:00 (after) 14:47:01 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-22 15:00:00) in space (linearNDFast) 14:47:01 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 /root/project/opendrift/readers/interpolation/interpolators.py:17: RuntimeWarning: overflow encountered in cast data[mask] = np.finfo(np.float64).min 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-22 18:00:00) in space (linearNDFast) 14:47:01 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1 14:47:01 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-22 15:00:00, weight 0.10) and after (2024-04-22 18:00:00, weight 0.90) in time 14:47:01 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:47:01 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:47:01 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:47:01 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:47:01 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:47:01 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd 14:47:01 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:47:01 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:47:01 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 14:47:01 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:47:01 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-22 15:00:00 (before) 2024-04-22 18:00:00 (after) 14:47:01 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-22 15:00:00) in space (linearNDFast) 14:47:01 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:47:01 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-22 18:00:00) in space (linearNDFast) 14:47:01 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:47:01 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-22 15:00:00, weight 0.10) and after (2024-04-22 18:00:00, weight 0.90) in time 14:47:01 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:47:01 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:47:01 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:47:01 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:47:01 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'] 14:47:01 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:47:01 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:47:01 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:47:01 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:47:01 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.109246 (min) 0.185384 (max) 14:47:01 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.082096 (min) 0.373795 (max) 14:47:01 DEBUG opendrift.models.basemodel.environment:905: x_wind: -16.2398 (min) -9.43179 (max) 14:47:01 DEBUG opendrift.models.basemodel.environment:905: y_wind: 1.27691 (min) 3.91572 (max) 14:47:01 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:47:01 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:47:01 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:47:01 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:47:01 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:47:01 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:47:01 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:47:01 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:47:01 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:47:01 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:47:01 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:47:01 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:47:01 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:47:01 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:47:01 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:47:01 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:47:01 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:47:01 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 2.228493, mean: 4.731541, max: 6.836700 14:47:01 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:47:01 DEBUG opendrift.models.physics_methods:1058: min: 8.132710, mean: 11.637226, max: 14.244685 14:47:01 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 8.132710, mean: 11.637226, max: 14.244685 14:47:01 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:47:01 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:47:01 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:47:01 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:47:01 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:47:01 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:47:01 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:47:01 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:47:01 DEBUG opendrift.models.physics_methods:1058: min: 8.132710, mean: 11.637226, max: 14.244685 14:47:01 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:47:01 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.003059, dN_50: 0.000240 14:47:01 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:47:01 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.10027997562743089 14:47:01 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:47:01 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:47:01 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:47:01 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 50 surface elements 14:47:01 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 49 surface elements 14:47:01 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 49 surface elements 14:47:01 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 50 surface elements 14:47:01 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 51 surface elements 14:47:01 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 50 surface elements 14:47:01 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 49 surface elements 14:47:01 DEBUG opendrift.models.physics_methods:912: Advecting 66 of 6000 elements above 0.100m with wind-sheared ocean current (0.000983 m/s - 0.353949 m/s) 14:47:01 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:47:01 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0016566471491460896 and 0.5125368659590086 m/s 14:47:01 DEBUG opendrift.models.basemodel:2097: 6000 active elements (0 deactivated) 14:47:01 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:47:01 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:47:01 INFO opendrift.models.basemodel:2011: 2024-04-22 18:42:41.057477 - step 29 of 120 - 6000 active elements (0 deactivated) 14:47:01 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:47:01 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:47:01 DEBUG opendrift.models.basemodel:2030: 34.91145449222359 <- latitude -> 35.26699223005791 14:47:01 DEBUG opendrift.models.basemodel:2035: 23.258695042568643 <- longitude -> 23.596844670764618 14:47:01 DEBUG opendrift.models.basemodel:2040: -129.11441547231894 <- z -> 0.0 14:47:01 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:47:01 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:47:01 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:47:01 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:47:01 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:47:01 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:47:01 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:47:01 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements 14:47:01 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:47:01 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:47:01 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:47:01 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:47:01 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:47:01 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:47:01 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:47:01 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:47:01 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:47:01 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements 14:47:01 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:47:01 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:47:01 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:47:01 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:47:01 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:47:01 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:47:01 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:47:01 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:47:01 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:47:01 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:47:01 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 6000 elements 14:47:01 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:47:01 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-22 18:00:00 (before) 2024-04-22 21:00:00 (after) 14:47:01 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity 14:47:26 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_sea_water_velocity to retrieve y_sea_water_velocity 14:47:31 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:47:31 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values 14:47:31 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values 14:47:31 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity'] 14:47:31 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 13x17x23) for time after (2024-04-22 21:00:00) 14:47:31 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-22 18:00:00) in space (linearNDFast) 14:47:31 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:47:31 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-22 21:00:00) in space (linearNDFast) 14:47:31 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:47:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 1 14:47:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 1 14:47:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 1 14:47:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 1 14:47:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 1 14:47:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 1 14:47:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 1 14:47:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 1 14:47:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 1 14:47:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 1 14:47:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 1 14:47:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 1 14:47:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 1 14:47:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 1 14:47:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 1 14:47:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 1 14:47:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 1 14:47:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 1 14:47:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 1 14:47:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 1 14:47:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 1 14:47:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 1 14:47:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 1 14:47:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 1 14:47:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 1 14:47:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 1 14:47:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 1 14:47:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 1 14:47:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 1 14:47:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 1 14:47:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 1 14:47:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 1 14:47:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 1 14:47:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 1 14:47:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 1 14:47:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 1 14:47:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 1 14:47:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 1 14:47:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 1 14:47:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 1 14:47:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 1 14:47:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 1 14:47:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 1 14:47:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 1 14:47:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 1 14:47:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 1 14:47:31 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-22 18:00:00, weight 0.76) and after (2024-04-22 21:00:00, weight 0.24) in time 14:47:31 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:47:31 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:47:31 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:47:31 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:47:31 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:47: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 14:47:31 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:47:31 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:47: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 6000 elements 14:47:31 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:47:31 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-22 18:00:00 (before) 2024-04-22 21:00:00 (after) 14:47:31 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_wind to retrieve x_wind 14:47:31 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_wind to retrieve y_wind 14:47:31 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:47:31 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values 14:47:31 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values 14:47:31 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 7x7x1) for time after (2024-04-22 21:00:00) 14:47:31 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-22 18:00:00) in space (linearNDFast) 14:47:31 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:47:31 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-22 21:00:00) in space (linearNDFast) 14:47:31 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:47:31 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-22 18:00:00, weight 0.76) and after (2024-04-22 21:00:00, weight 0.24) in time 14:47:31 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:47:31 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:47:31 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:47:31 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:47: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'] 14:47:31 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:47:31 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:47:31 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:47:31 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:47:31 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.125485 (min) 0.166686 (max) 14:47:31 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.079973 (min) 0.31657 (max) 14:47:31 DEBUG opendrift.models.basemodel.environment:905: x_wind: -16.3773 (min) -9.03174 (max) 14:47:31 DEBUG opendrift.models.basemodel.environment:905: y_wind: 0.913432 (min) 3.98532 (max) 14:47:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:47:31 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:47:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:47:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:47:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:47:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:47:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:47:31 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:47:31 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:47:31 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:47:31 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:47:31 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:47:31 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:47:31 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:47:31 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:47:31 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:47:31 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:47:31 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 2.027203, mean: 4.684582, max: 6.957808 14:47:31 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:47:31 DEBUG opendrift.models.physics_methods:1058: min: 7.756722, mean: 11.534792, max: 14.370298 14:47:31 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 7.756722, mean: 11.534792, max: 14.370298 14:47:31 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:47:31 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:47:31 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:47:31 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:47:31 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:47:31 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:47:31 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:47:31 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:47:31 DEBUG opendrift.models.physics_methods:1058: min: 7.756722, mean: 11.534792, max: 14.370298 14:47:31 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:47:31 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.003241, dN_50: 0.000254 14:47:31 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:47:31 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.10205628612758047 14:47:31 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:47:31 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:47:31 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:47:31 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 50 surface elements 14:47:31 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 54 surface elements 14:47:31 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 55 surface elements 14:47:31 DEBUG opendrift.models.physics_methods:912: Advecting 75 of 6000 elements above 0.100m with wind-sheared ocean current (0.018608 m/s - 0.343856 m/s) 14:47:31 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:47:31 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0011861117335302755 and 0.47176753442074026 m/s 14:47:31 DEBUG opendrift.models.basemodel:2097: 6000 active elements (0 deactivated) 14:47:31 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:47:31 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:47:31 INFO opendrift.models.basemodel:2011: 2024-04-22 19:42:41.057477 - step 30 of 120 - 6000 active elements (0 deactivated) 14:47:31 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:47:31 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:47:31 DEBUG opendrift.models.basemodel:2030: 34.91331834615772 <- latitude -> 35.273782628687094 14:47:31 DEBUG opendrift.models.basemodel:2035: 23.244104866987897 <- longitude -> 23.59403570605233 14:47:31 DEBUG opendrift.models.basemodel:2040: -128.35843349041122 <- z -> 0.0 14:47:31 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:47:31 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:47:31 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:47:31 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:47:31 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:47:31 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:47:31 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:47:31 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements 14:47:31 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:47:31 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:47:31 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:47:31 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:47:31 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:47:31 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:47:31 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:47:31 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:47:31 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:47:31 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements 14:47:31 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:47:31 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:47:31 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:47:31 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:47:31 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:47:31 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:47:31 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:47:31 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:47:31 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:47:31 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:47:31 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 6000 elements 14:47:31 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:47:31 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-22 18:00:00 (before) 2024-04-22 21:00:00 (after) 14:47:31 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-22 18:00:00) in space (linearNDFast) 14:47:31 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:47:31 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-22 21:00:00) in space (linearNDFast) 14:47:31 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:47:31 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-22 18:00:00, weight 0.43) and after (2024-04-22 21:00:00, weight 0.57) in time 14:47:31 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:47:31 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:47:31 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:47:31 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:47:31 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:47: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 14:47:31 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:47:31 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:47: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 6000 elements 14:47:31 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:47:31 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-22 18:00:00 (before) 2024-04-22 21:00:00 (after) 14:47:31 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-22 18:00:00) in space (linearNDFast) 14:47:31 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:47:31 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-22 21:00:00) in space (linearNDFast) 14:47:31 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:47:31 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-22 18:00:00, weight 0.43) and after (2024-04-22 21:00:00, weight 0.57) in time 14:47:31 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:47:31 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:47:31 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:47:31 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:47: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'] 14:47:31 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:47:31 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:47:31 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:47:31 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:47:31 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.153342 (min) 0.140349 (max) 14:47:31 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.062154 (min) 0.261841 (max) 14:47:31 DEBUG opendrift.models.basemodel.environment:905: x_wind: -16.5367 (min) -8.73262 (max) 14:47:31 DEBUG opendrift.models.basemodel.environment:905: y_wind: 0.241796 (min) 3.8296 (max) 14:47:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:47:31 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:47:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:47:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:47:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:47:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:47:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:47:31 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:47:31 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:47:31 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:47:31 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:47:31 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:47:31 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:47:31 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:47:31 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:47:31 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:47:31 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:47:31 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.877402, mean: 4.655104, max: 7.067266 14:47:31 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:47:31 DEBUG opendrift.models.physics_methods:1058: min: 7.464628, mean: 11.461814, max: 14.482893 14:47:31 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 7.464628, mean: 11.461814, max: 14.482893 14:47:31 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:47:31 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:47:31 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:47:31 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:47:31 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:47:31 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:47:31 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:47:31 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:47:31 DEBUG opendrift.models.physics_methods:1058: min: 7.464628, mean: 11.461815, max: 14.482893 14:47:31 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:47:31 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.003420, dN_50: 0.000268 14:47:31 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:47:31 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.10366175943741736 14:47:31 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:47:31 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:47:31 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:47:31 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 57 surface elements 14:47:32 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 60 surface elements 14:47:32 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 59 surface elements 14:47:32 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 58 surface elements 14:47:32 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 60 surface elements 14:47:32 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 61 surface elements 14:47:32 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 60 surface elements 14:47:32 DEBUG opendrift.models.physics_methods:912: Advecting 68 of 6000 elements above 0.100m with wind-sheared ocean current (0.026170 m/s - 0.339887 m/s) 14:47:32 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:47:32 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0033146881230234934 and 0.4173384941481045 m/s 14:47:32 DEBUG opendrift.models.basemodel:2097: 6000 active elements (0 deactivated) 14:47:32 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:47:32 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:47:32 INFO opendrift.models.basemodel:2011: 2024-04-22 20:42:41.057477 - step 31 of 120 - 6000 active elements (0 deactivated) 14:47:32 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:47:32 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:47:32 DEBUG opendrift.models.basemodel:2030: 34.91237552370757 <- latitude -> 35.27687184880256 14:47:32 DEBUG opendrift.models.basemodel:2035: 23.217075619184794 <- longitude -> 23.593555393288796 14:47:32 DEBUG opendrift.models.basemodel:2040: -127.48016208096966 <- z -> 0.0 14:47:32 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:47:32 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:47:32 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:47:32 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:47:32 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:47:32 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:47:32 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:47:32 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements 14:47:32 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:47:32 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:47:32 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:47:32 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:47:32 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:47:32 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:47:32 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:47:32 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:47:32 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:47:32 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements 14:47:32 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:47:32 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:47:32 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:47:32 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:47:32 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:47:32 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:47:32 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:47:32 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:47:32 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:47:32 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:47:32 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 6000 elements 14:47:32 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:47:32 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-22 18:00:00 (before) 2024-04-22 21:00:00 (after) 14:47:32 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-22 18:00:00) in space (linearNDFast) 14:47:32 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:47:32 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-22 21:00:00) in space (linearNDFast) 14:47:32 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:47:32 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-22 18:00:00, weight 0.10) and after (2024-04-22 21:00:00, weight 0.90) in time 14:47:32 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:47:32 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:47:32 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:47:32 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:47:32 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:47:32 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd 14:47:32 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:47:32 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:47:32 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 14:47:32 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:47:32 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-22 18:00:00 (before) 2024-04-22 21:00:00 (after) 14:47:32 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-22 18:00:00) in space (linearNDFast) 14:47:32 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:47:32 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-22 21:00:00) in space (linearNDFast) 14:47:32 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:47:32 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-22 18:00:00, weight 0.10) and after (2024-04-22 21:00:00, weight 0.90) in time 14:47:32 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:47:32 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:47:32 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:47:32 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:47:32 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'] 14:47:32 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:47:32 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:47:32 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:47:32 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:47:32 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.201354 (min) 0.102253 (max) 14:47:32 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.0475207 (min) 0.215537 (max) 14:47:32 DEBUG opendrift.models.basemodel.environment:905: x_wind: -16.7013 (min) -8.46739 (max) 14:47:32 DEBUG opendrift.models.basemodel.environment:905: y_wind: -0.410643 (min) 3.83054 (max) 14:47:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:47:32 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:47:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:47:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:47:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:47:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:47:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:47:32 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:47:32 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:47:32 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:47:32 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:47:32 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:47:32 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:47:32 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:47:32 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:47:32 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:47:32 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:47:32 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.767885, mean: 4.644244, max: 7.178694 14:47:32 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:47:32 DEBUG opendrift.models.physics_methods:1058: min: 7.243635, mean: 11.416632, max: 14.596620 14:47:32 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 7.243635, mean: 11.416632, max: 14.596620 14:47:32 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:47:32 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:47:32 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:47:32 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:47:32 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:47:32 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:47:32 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:47:32 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:47:32 DEBUG opendrift.models.physics_methods:1058: min: 7.243635, mean: 11.416632, max: 14.596620 14:47:32 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:47:32 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.003599, dN_50: 0.000282 14:47:32 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:47:32 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.10529609342993337 14:47:32 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:47:32 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:47:32 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:47:32 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 60 surface elements 14:47:32 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 68 surface elements 14:47:32 DEBUG opendrift.models.physics_methods:912: Advecting 82 of 6000 elements above 0.100m with wind-sheared ocean current (0.041899 m/s - 0.334240 m/s) 14:47:32 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:47:32 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0007962287474743972 and 0.44123663925808704 m/s 14:47:32 DEBUG opendrift.models.basemodel:2097: 6000 active elements (0 deactivated) 14:47:32 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:47:32 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:47:32 INFO opendrift.models.basemodel:2011: 2024-04-22 21:42:41.057477 - step 32 of 120 - 6000 active elements (0 deactivated) 14:47:32 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:47:32 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:47:32 DEBUG opendrift.models.basemodel:2030: 34.90690810807212 <- latitude -> 35.28113570263396 14:47:32 DEBUG opendrift.models.basemodel:2035: 23.197988612757914 <- longitude -> 23.58805347300886 14:47:32 DEBUG opendrift.models.basemodel:2040: -126.86715648994395 <- z -> 0.0 14:47:32 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:47:32 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:47:32 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:47:32 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:47:32 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:47:32 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:47:32 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:47:32 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements 14:47:32 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:47:32 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:47:32 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:47:32 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:47:32 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:47:32 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:47:32 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:47:32 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:47:32 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:47:32 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements 14:47:32 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:47:32 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:47:32 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:47:32 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:47:32 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:47:32 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:47:32 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:47:32 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:47:32 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:47:32 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:47:32 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 6000 elements 14:47:32 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:47:32 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-22 21:00:00 (before) 2024-04-23 00:00:00 (after) 14:47:32 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity 14:47:44 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_sea_water_velocity to retrieve y_sea_water_velocity 14:47:46 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:47:46 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values 14:47:46 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values 14:47:46 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity'] 14:47:46 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 13x17x23) for time after (2024-04-23 00:00:00) 14:47:46 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-22 21:00:00) in space (linearNDFast) 14:47:46 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:47:46 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-23 00:00:00) in space (linearNDFast) 14:47:46 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:47:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 1 14:47:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 1 14:47:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 1 14:47:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 1 14:47:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 1 14:47:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 1 14:47:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 1 14:47:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 1 14:47:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 1 14:47:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 1 14:47:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 1 14:47:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 1 14:47:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 1 14:47:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 1 14:47:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 1 14:47:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 1 14:47:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 1 14:47:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 1 14:47:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 1 14:47:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 1 14:47:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 1 14:47:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 1 14:47:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 1 14:47:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 1 14:47:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 1 14:47:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 1 14:47:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 1 14:47:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 1 14:47:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 1 14:47:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 1 14:47:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 1 14:47:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 1 14:47:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 1 14:47:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 1 14:47:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 1 14:47:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 1 14:47:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 1 14:47:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 1 14:47:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 1 14:47:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 1 14:47:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 1 14:47:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 1 14:47:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 1 14:47:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 1 14:47:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 1 14:47:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 1 14:47:46 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-22 21:00:00, weight 0.76) and after (2024-04-23 00:00:00, weight 0.24) in time 14:47:46 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:47:46 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:47:46 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:47:46 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:47:46 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:47: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 14:47:46 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:47:46 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:47: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 14:47:46 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:47:46 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-22 21:00:00 (before) 2024-04-23 00:00:00 (after) 14:47:46 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_wind to retrieve x_wind 14:47:47 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_wind to retrieve y_wind 14:47:47 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:47:47 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values 14:47:47 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values 14:47:47 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 7x7x1) for time after (2024-04-23 00:00:00) 14:47:47 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-22 21:00:00) in space (linearNDFast) 14:47:47 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:47:47 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-23 00:00:00) in space (linearNDFast) 14:47:47 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:47:47 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-22 21:00:00, weight 0.76) and after (2024-04-23 00:00:00, weight 0.24) in time 14:47:47 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:47:47 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:47:47 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:47:47 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:47: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'] 14:47:47 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:47:47 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:47:47 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:47:47 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:47:47 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.270774 (min) 0.0644161 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.0347663 (min) 0.217414 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:905: x_wind: -16.6374 (min) -8.2785 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:905: y_wind: -0.187971 (min) 3.73815 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:47:47 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.686793, mean: 4.622599, max: 7.100356 14:47:47 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:47:47 DEBUG opendrift.models.physics_methods:1058: min: 7.075554, mean: 11.400508, max: 14.516758 14:47:47 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 7.075554, mean: 11.400508, max: 14.516758 14:47:47 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:47:47 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:47:47 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:47:47 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:47:47 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:47:47 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:47:47 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:47:47 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:47:47 DEBUG opendrift.models.physics_methods:1058: min: 7.075554, mean: 11.400508, max: 14.516758 14:47:47 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:47:47 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.003734, dN_50: 0.000293 14:47:47 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:47:47 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.10414708146708727 14:47:47 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:47:47 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:47:47 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:47:47 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 74 surface elements 14:47:47 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 73 surface elements 14:47:47 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 80 surface elements 14:47:47 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 80 surface elements 14:47:47 DEBUG opendrift.models.physics_methods:912: Advecting 90 of 6000 elements above 0.100m with wind-sheared ocean current (0.005418 m/s - 0.337590 m/s) 14:47:47 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:47:47 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0014132052358018859 and 0.47100993392193563 m/s 14:47:47 DEBUG opendrift.models.basemodel:2097: 6000 active elements (0 deactivated) 14:47:47 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:47:47 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:47:47 INFO opendrift.models.basemodel:2011: 2024-04-22 22:42:41.057477 - step 33 of 120 - 6000 active elements (0 deactivated) 14:47:47 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:47:47 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:47:47 DEBUG opendrift.models.basemodel:2030: 34.90263442607863 <- latitude -> 35.287161110922504 14:47:47 DEBUG opendrift.models.basemodel:2035: 23.174221783219572 <- longitude -> 23.58697364188476 14:47:47 DEBUG opendrift.models.basemodel:2040: -126.13087954443345 <- z -> 0.0 14:47:47 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:47:47 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:47:47 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:47:47 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:47:47 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:47:47 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:47:47 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:47:47 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements 14:47:47 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:47:47 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:47:47 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:47:47 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:47:47 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:47:47 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:47:47 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:47:47 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:47:47 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:47:47 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements 14:47:47 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:47:47 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:47:47 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:47:47 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:47:47 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:47:47 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:47:47 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:47:47 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:47:47 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:47:47 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:47:47 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 6000 elements 14:47:47 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:47:47 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-22 21:00:00 (before) 2024-04-23 00:00:00 (after) 14:47:47 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-22 21:00:00) in space (linearNDFast) 14:47:47 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:47:47 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-23 00:00:00) in space (linearNDFast) 14:47:47 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:47:47 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-22 21:00:00, weight 0.43) and after (2024-04-23 00:00:00, weight 0.57) in time 14:47:47 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:47:47 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:47:47 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:47:47 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:47:47 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:47:47 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd 14:47:47 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:47:47 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:47:47 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 14:47:47 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:47:47 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-22 21:00:00 (before) 2024-04-23 00:00:00 (after) 14:47:47 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-22 21:00:00) in space (linearNDFast) 14:47:47 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:47:47 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-23 00:00:00) in space (linearNDFast) 14:47:47 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:47:47 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-22 21:00:00, weight 0.43) and after (2024-04-23 00:00:00, weight 0.57) in time 14:47:47 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:47:47 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:47:47 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:47:47 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:47: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'] 14:47:47 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:47:47 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:47:47 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:47:47 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:47:47 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.34211 (min) 0.024353 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.0239594 (min) 0.224488 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:905: x_wind: -16.4893 (min) -8.36978 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:905: y_wind: 0.513629 (min) 3.67782 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:47:47 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.729798, mean: 4.606075, max: 6.959356 14:47:47 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:47:47 DEBUG opendrift.models.physics_methods:1058: min: 7.165182, mean: 11.411411, max: 14.371898 14:47:47 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 7.165182, mean: 11.411411, max: 14.371898 14:47:47 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:47:47 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:47:47 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:47:47 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:47:47 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:47:47 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:47:47 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:47:47 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:47:47 DEBUG opendrift.models.physics_methods:1058: min: 7.165183, mean: 11.411411, max: 14.371898 14:47:47 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:47:47 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.003845, dN_50: 0.000302 14:47:47 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:47:47 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.10207899108683452 14:47:47 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:47:47 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:47:47 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:47:47 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 79 surface elements 14:47:47 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 78 surface elements 14:47:47 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 80 surface elements 14:47:47 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 83 surface elements 14:47:47 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 82 surface elements 14:47:47 DEBUG opendrift.models.physics_methods:912: Advecting 93 of 6000 elements above 0.100m with wind-sheared ocean current (0.007535 m/s - 0.366016 m/s) 14:47:47 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:47:47 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0018283509639090813 and 0.4238601891108635 m/s 14:47:47 DEBUG opendrift.models.basemodel:2097: 6000 active elements (0 deactivated) 14:47:47 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:47:47 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:47:47 INFO opendrift.models.basemodel:2011: 2024-04-22 23:42:41.057477 - step 34 of 120 - 6000 active elements (0 deactivated) 14:47:47 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:47:47 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:47:47 DEBUG opendrift.models.basemodel:2030: 34.90038363595079 <- latitude -> 35.29658732606615 14:47:47 DEBUG opendrift.models.basemodel:2035: 23.147366257645892 <- longitude -> 23.585072312754704 14:47:47 DEBUG opendrift.models.basemodel:2040: -125.41863475546343 <- z -> 0.0 14:47:47 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:47:47 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:47:47 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:47:47 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:47:47 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:47:47 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:47:47 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:47:47 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements 14:47:47 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:47:47 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:47:47 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:47:47 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:47:47 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:47:47 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:47:47 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:47:47 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:47:47 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:47:47 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements 14:47:47 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:47:47 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:47:47 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:47:47 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:47:47 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:47:47 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:47:47 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:47:47 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:47:47 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:47:47 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:47:47 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 6000 elements 14:47:47 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:47:47 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-22 21:00:00 (before) 2024-04-23 00:00:00 (after) 14:47:47 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-22 21:00:00) in space (linearNDFast) 14:47:47 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:47:47 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-23 00:00:00) in space (linearNDFast) 14:47:47 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:47:47 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-22 21:00:00, weight 0.10) and after (2024-04-23 00:00:00, weight 0.90) in time 14:47:47 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:47:47 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:47:47 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:47:47 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:47:47 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:47:47 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd 14:47:47 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:47:47 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:47:47 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 14:47:47 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:47:47 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-22 21:00:00 (before) 2024-04-23 00:00:00 (after) 14:47:47 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-22 21:00:00) in space (linearNDFast) 14:47:47 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:47:47 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-23 00:00:00) in space (linearNDFast) 14:47:47 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:47:47 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-22 21:00:00, weight 0.10) and after (2024-04-23 00:00:00, weight 0.90) in time 14:47:47 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:47:47 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:47:47 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:47:47 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:47: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'] 14:47:47 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:47:47 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:47:47 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:47:47 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:47:47 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.409804 (min) 0.0205822 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.019005 (min) 0.272885 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:905: x_wind: -16.3355 (min) -8.665 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:905: y_wind: 1.31341 (min) 5.05755 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:47:47 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:47:47 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.889460, mean: 4.611306, max: 6.823426 14:47:47 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:47:47 DEBUG opendrift.models.physics_methods:1058: min: 7.488562, mean: 11.453929, max: 14.230850 14:47:47 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 7.488562, mean: 11.453929, max: 14.230850 14:47:47 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:47:47 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:47:47 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:47:47 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:47:47 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:47:47 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:47:47 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:47:47 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:47:47 DEBUG opendrift.models.physics_methods:1058: min: 7.488562, mean: 11.453928, max: 14.230849 14:47:47 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:47:47 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.003947, dN_50: 0.000310 14:47:47 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:47:47 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.10008528412744228 14:47:47 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:47:47 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:47:47 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:47:47 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 83 surface elements 14:47:47 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 83 surface elements 14:47:47 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 82 surface elements 14:47:47 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 82 surface elements 14:47:47 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 81 surface elements 14:47:47 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 84 surface elements 14:47:47 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 86 surface elements 14:47:47 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 86 surface elements 14:47:47 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 85 surface elements 14:47:47 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 85 surface elements 14:47:47 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 84 surface elements 14:47:47 DEBUG opendrift.models.physics_methods:912: Advecting 102 of 6000 elements above 0.100m with wind-sheared ocean current (0.002965 m/s - 0.398680 m/s) 14:47:47 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:47:47 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0007640791530405201 and 0.4259625840877755 m/s 14:47:47 DEBUG opendrift.models.basemodel:2097: 6000 active elements (0 deactivated) 14:47:47 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:47:47 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:47:47 INFO opendrift.models.basemodel:2011: 2024-04-23 00:42:41.057477 - step 35 of 120 - 6000 active elements (0 deactivated) 14:47:47 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:47:47 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:47:47 DEBUG opendrift.models.basemodel:2030: 34.89936919639412 <- latitude -> 35.30346736578593 14:47:47 DEBUG opendrift.models.basemodel:2035: 23.10955289548854 <- longitude -> 23.584909489954967 14:47:47 DEBUG opendrift.models.basemodel:2040: -124.41214443155253 <- z -> 0.0 14:47:47 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:47:48 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:47:48 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:47:48 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:47:48 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:47:48 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:47:48 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:47:48 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements 14:47:48 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:47:48 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:47:48 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:47:48 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:47:48 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:47:48 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:47:48 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:47:48 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:47:48 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:47:48 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements 14:47:48 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:47:48 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:47:48 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:47:48 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:47:48 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:47:48 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:47:48 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:47:48 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:47:48 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:47:48 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:47:48 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 6000 elements 14:47:48 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:47:48 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-23 00:00:00 (before) 2024-04-23 03:00:00 (after) 14:47:48 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity 14:47:48 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_sea_water_velocity to retrieve y_sea_water_velocity 14:47:56 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:47:56 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values 14:47:56 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values 14:47:56 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity'] 14:47:56 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 13x18x22) for time after (2024-04-23 03:00:00) 14:47:56 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-23 00:00:00) in space (linearNDFast) 14:47:56 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:47:56 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-23 03:00:00) in space (linearNDFast) 14:47:56 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:47:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1 14:47:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1 14:47:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1 14:47:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1 14:47:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1 14:47:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1 14:47:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1 14:47:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1 14:47:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1 14:47:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1 14:47:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1 14:47:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1 14:47:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1 14:47:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1 14:47:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1 14:47:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1 14:47:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1 14:47:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1 14:47:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1 14:47:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1 14:47:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1 14:47:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1 14:47:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1 14:47:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1 14:47:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1 14:47:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1 14:47:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1 14:47:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1 14:47:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1 14:47:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1 14:47:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1 14:47:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1 14:47:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1 14:47:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1 14:47:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1 14:47:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1 14:47:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1 14:47:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1 14:47:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1 14:47:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1 14:47:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1 14:47:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1 14:47:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1 14:47:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1 14:47:56 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-23 00:00:00, weight 0.76) and after (2024-04-23 03:00:00, weight 0.24) in time 14:47:56 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:47:56 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:47:56 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:47:56 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:47:56 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:47: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 14:47:56 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:47:56 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:47: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 6000 elements 14:47:56 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:47:56 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-23 00:00:00 (before) 2024-04-23 03:00:00 (after) 14:47:56 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_wind to retrieve x_wind 14:47:57 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_wind to retrieve y_wind 14:47:57 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:47:57 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values 14:47:57 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values 14:47:57 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 7x7x1) for time after (2024-04-23 03:00:00) 14:47:57 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-23 00:00:00) in space (linearNDFast) 14:47:57 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:47:57 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-23 03:00:00) in space (linearNDFast) 14:47:57 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:47:57 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-23 00:00:00, weight 0.76) and after (2024-04-23 03:00:00, weight 0.24) in time 14:47:57 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:47:57 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:47:57 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:47:57 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:47:57 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'] 14:47:57 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:47:57 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:47:57 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:47:57 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:47:57 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.412601 (min) 0.016414 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.0185698 (min) 0.359651 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:905: x_wind: -16.5004 (min) -9.04324 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:905: y_wind: 1.07875 (min) 5.19737 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:47:57 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 2.040419, mean: 4.749746, max: 6.965788 14:47:57 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:47:57 DEBUG opendrift.models.physics_methods:1058: min: 7.781966, mean: 11.640529, max: 14.378537 14:47:57 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 7.781966, mean: 11.640529, max: 14.378537 14:47:57 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:47:57 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:47:57 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:47:57 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:47:57 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:47:57 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:47:57 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:47:57 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:47:57 DEBUG opendrift.models.physics_methods:1058: min: 7.781966, mean: 11.640529, max: 14.378536 14:47:57 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:47:57 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.004044, dN_50: 0.000317 14:47:57 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:47:57 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.10217333653864168 14:47:57 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:47:57 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:47:57 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:47:57 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 87 surface elements 14:47:57 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 95 surface elements 14:47:57 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 94 surface elements 14:47:57 DEBUG opendrift.models.physics_methods:912: Advecting 110 of 6000 elements above 0.100m with wind-sheared ocean current (0.014145 m/s - 0.382969 m/s) 14:47:57 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:47:57 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0026278786330312417 and 0.4788246250206879 m/s 14:47:57 DEBUG opendrift.models.basemodel:2097: 6000 active elements (0 deactivated) 14:47:57 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:47:57 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:47:57 INFO opendrift.models.basemodel:2011: 2024-04-23 01:42:41.057477 - step 36 of 120 - 6000 active elements (0 deactivated) 14:47:57 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:47:57 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:47:57 DEBUG opendrift.models.basemodel:2030: 34.89655442289159 <- latitude -> 35.32114729655386 14:47:57 DEBUG opendrift.models.basemodel:2035: 23.084343737018642 <- longitude -> 23.585815687194174 14:47:57 DEBUG opendrift.models.basemodel:2040: -123.5368045677283 <- z -> 0.0 14:47:57 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:47:57 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:47:57 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:47:57 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:47:57 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:47:57 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:47:57 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:47:57 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements 14:47:57 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:47:57 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:47:57 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:47:57 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:47:57 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:47:57 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:47:57 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:47:57 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:47:57 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:47:57 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements 14:47:57 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:47:57 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:47:57 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:47:57 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:47:57 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:47:57 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:47:57 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:47:57 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:47:57 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:47:57 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:47:57 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 6000 elements 14:47:57 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:47:57 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-23 00:00:00 (before) 2024-04-23 03:00:00 (after) 14:47:57 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-23 00:00:00) in space (linearNDFast) 14:47:57 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:47:57 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-23 03:00:00) in space (linearNDFast) 14:47:57 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:47:57 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-23 00:00:00, weight 0.43) and after (2024-04-23 03:00:00, weight 0.57) in time 14:47:57 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:47:57 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:47:57 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:47:57 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:47:57 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:47:57 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd 14:47:57 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:47:57 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:47:57 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 14:47:57 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:47:57 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-23 00:00:00 (before) 2024-04-23 03:00:00 (after) 14:47:57 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-23 00:00:00) in space (linearNDFast) 14:47:57 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:47:57 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-23 03:00:00) in space (linearNDFast) 14:47:57 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:47:57 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-23 00:00:00, weight 0.43) and after (2024-04-23 03:00:00, weight 0.57) in time 14:47:57 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:47:57 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:47:57 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:47:57 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:47:57 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'] 14:47:57 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:47:57 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:47:57 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:47:57 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:47:57 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.411034 (min) 0.0124467 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.0182274 (min) 0.41178 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:905: x_wind: -16.7903 (min) -9.35751 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:905: y_wind: 0.367125 (min) 4.36652 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:47:57 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 2.157365, mean: 4.940890, max: 7.232515 14:47:57 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:47:57 DEBUG opendrift.models.physics_methods:1058: min: 8.001868, mean: 11.878738, max: 14.651235 14:47:57 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 8.001868, mean: 11.878738, max: 14.651235 14:47:57 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:47:57 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:47:57 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:47:57 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:47:57 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:47:57 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:47:57 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:47:57 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:47:57 DEBUG opendrift.models.physics_methods:1058: min: 8.001867, mean: 11.878737, max: 14.651236 14:47:57 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:47:57 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.004146, dN_50: 0.000325 14:47:57 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:47:57 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.10608549268409746 14:47:57 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:47:57 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:47:57 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:47:57 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 97 surface elements 14:47:57 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 97 surface elements 14:47:57 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 96 surface elements 14:47:57 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 97 surface elements 14:47:57 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 96 surface elements 14:47:57 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 99 surface elements 14:47:57 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 100 surface elements 14:47:57 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 99 surface elements 14:47:57 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 97 surface elements 14:47:57 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 96 surface elements 14:47:57 DEBUG opendrift.models.physics_methods:912: Advecting 112 of 6000 elements above 0.100m with wind-sheared ocean current (0.001683 m/s - 0.374768 m/s) 14:47:57 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:47:57 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.000405149155725514 and 0.41535526429447667 m/s 14:47:57 DEBUG opendrift.models.basemodel:2097: 6000 active elements (0 deactivated) 14:47:57 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:47:57 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:47:57 INFO opendrift.models.basemodel:2011: 2024-04-23 02:42:41.057477 - step 37 of 120 - 6000 active elements (0 deactivated) 14:47:57 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:47:57 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:47:57 DEBUG opendrift.models.basemodel:2030: 34.89659442591396 <- latitude -> 35.33831512807063 14:47:57 DEBUG opendrift.models.basemodel:2035: 23.07463625476846 <- longitude -> 23.592731623576817 14:47:57 DEBUG opendrift.models.basemodel:2040: -122.44010860056866 <- z -> 0.0 14:47:57 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:47:57 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:47:57 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:47:57 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:47:57 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:47:57 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:47:57 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:47:57 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements 14:47:57 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:47:57 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:47:57 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:47:57 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:47:57 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:47:57 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:47:57 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:47:57 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:47:57 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:47:57 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements 14:47:57 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:47:57 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:47:57 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:47:57 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:47:57 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:47:57 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:47:57 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:47:57 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:47:57 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:47:57 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:47:57 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 6000 elements 14:47:57 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:47:57 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-23 00:00:00 (before) 2024-04-23 03:00:00 (after) 14:47:57 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-23 00:00:00) in space (linearNDFast) 14:47:57 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:47:57 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-23 03:00:00) in space (linearNDFast) 14:47:57 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:47:57 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-23 00:00:00, weight 0.10) and after (2024-04-23 03:00:00, weight 0.90) in time 14:47:57 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:47:57 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:47:57 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:47:57 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:47:57 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:47:57 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd 14:47:57 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:47:57 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:47:57 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 14:47:57 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:47:57 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-23 00:00:00 (before) 2024-04-23 03:00:00 (after) 14:47:57 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-23 00:00:00) in space (linearNDFast) 14:47:57 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:47:57 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-23 03:00:00) in space (linearNDFast) 14:47:57 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:47:57 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-23 00:00:00, weight 0.10) and after (2024-04-23 03:00:00, weight 0.90) in time 14:47:57 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:47:57 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:47:57 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:47:57 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:47:57 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'] 14:47:57 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:47:57 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:47:57 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:47:57 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:47:57 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.397786 (min) 0.00965505 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.0197663 (min) 0.515276 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:905: x_wind: -17.0761 (min) -9.63005 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:905: y_wind: -0.403733 (min) 3.80516 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:47:57 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:47:57 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 2.285359, mean: 5.134869, max: 7.510915 14:47:57 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:47:57 DEBUG opendrift.models.physics_methods:1058: min: 8.235819, mean: 12.114929, max: 14.930558 14:47:57 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 8.235819, mean: 12.114929, max: 14.930558 14:47:57 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:47:57 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:47:57 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:47:57 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:47:57 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:47:57 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:47:57 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:47:57 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:47:57 DEBUG opendrift.models.physics_methods:1058: min: 8.235819, mean: 12.114930, max: 14.930557 14:47:57 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:47:57 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.004255, dN_50: 0.000334 14:47:57 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:47:57 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.11016887383749295 14:47:57 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:47:57 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:47:57 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:47:57 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 97 surface elements 14:47:57 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 96 surface elements 14:47:57 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 96 surface elements 14:47:57 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 95 surface elements 14:47:57 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 98 surface elements 14:47:57 DEBUG opendrift.models.physics_methods:912: Advecting 110 of 6000 elements above 0.100m with wind-sheared ocean current (0.006001 m/s - 0.369102 m/s) 14:47:57 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:47:57 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0006054092429790289 and 0.514138042267852 m/s 14:47:57 DEBUG opendrift.models.basemodel:2097: 6000 active elements (0 deactivated) 14:47:57 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:47:57 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:47:57 INFO opendrift.models.basemodel:2011: 2024-04-23 03:42:41.057477 - step 38 of 120 - 6000 active elements (0 deactivated) 14:47:57 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:47:57 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:47:57 DEBUG opendrift.models.basemodel:2030: 34.899768356963506 <- latitude -> 35.35593105797093 14:47:57 DEBUG opendrift.models.basemodel:2035: 23.06771744402912 <- longitude -> 23.589992711492414 14:47:57 DEBUG opendrift.models.basemodel:2040: -121.84042639525151 <- z -> 0.0 14:47:57 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:47:57 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:47:57 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:47:57 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:47:57 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:47:57 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:47:57 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:47:57 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements 14:47:57 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:47:57 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:47:57 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:47:57 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:47:57 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:47:57 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:47:57 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:47:57 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:47:57 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:47:57 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements 14:47:57 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:47:57 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:47:57 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:47:57 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:47:57 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:47:57 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:47:57 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:47:57 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:47:57 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:47:57 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:47:57 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 6000 elements 14:47:57 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:47:57 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-23 03:00:00 (before) 2024-04-23 06:00:00 (after) 14:47:57 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity 14:48:08 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_sea_water_velocity to retrieve y_sea_water_velocity 14:48:17 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:48:17 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values 14:48:17 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values 14:48:17 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity'] 14:48:17 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 15x19x22) for time after (2024-04-23 06:00:00) 14:48:17 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-23 03:00:00) in space (linearNDFast) 14:48:17 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:48:17 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-23 06:00:00) in space (linearNDFast) 14:48:17 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:48:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 537 elements, expanding data 1 14:48:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 537 elements, expanding data 1 14:48:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 537 elements, expanding data 1 14:48:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 537 elements, expanding data 1 14:48:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 537 elements, expanding data 1 14:48:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 537 elements, expanding data 1 14:48:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 537 elements, expanding data 1 14:48:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 537 elements, expanding data 1 14:48:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 537 elements, expanding data 1 14:48:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 537 elements, expanding data 1 14:48:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 537 elements, expanding data 1 14:48:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 537 elements, expanding data 1 14:48:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 537 elements, expanding data 1 14:48:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 537 elements, expanding data 1 14:48:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 537 elements, expanding data 1 14:48:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 537 elements, expanding data 1 14:48:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 537 elements, expanding data 1 14:48:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 537 elements, expanding data 1 14:48:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 537 elements, expanding data 1 14:48:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 537 elements, expanding data 1 14:48:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 537 elements, expanding data 1 14:48:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 537 elements, expanding data 1 14:48:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 537 elements, expanding data 1 14:48:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 537 elements, expanding data 1 14:48:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 537 elements, expanding data 1 14:48:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 537 elements, expanding data 1 14:48:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 537 elements, expanding data 1 14:48:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 537 elements, expanding data 1 14:48:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 537 elements, expanding data 1 14:48:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 537 elements, expanding data 1 14:48:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 537 elements, expanding data 1 14:48:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 537 elements, expanding data 1 14:48:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 537 elements, expanding data 1 14:48:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 537 elements, expanding data 1 14:48:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 537 elements, expanding data 1 14:48:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 537 elements, expanding data 1 14:48:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 537 elements, expanding data 1 14:48:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 537 elements, expanding data 1 14:48:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 537 elements, expanding data 1 14:48:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 537 elements, expanding data 1 14:48:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 537 elements, expanding data 1 14:48:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 537 elements, expanding data 1 14:48:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 537 elements, expanding data 1 14:48:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 537 elements, expanding data 1 14:48:17 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-23 03:00:00, weight 0.76) and after (2024-04-23 06:00:00, weight 0.24) in time 14:48:17 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:48:17 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:48:17 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:48:17 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:48:17 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:48: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 14:48:17 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:48:17 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:48: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 6000 elements 14:48:17 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:48:17 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-23 03:00:00 (before) 2024-04-23 06:00:00 (after) 14:48:17 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_wind to retrieve x_wind 14:48:17 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_wind to retrieve y_wind 14:48:18 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:48:18 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values 14:48:18 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values 14:48:18 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 7x7x1) for time after (2024-04-23 06:00:00) 14:48:18 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-23 03:00:00) in space (linearNDFast) 14:48:18 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:48:18 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-23 06:00:00) in space (linearNDFast) 14:48:18 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:48:18 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-23 03:00:00, weight 0.76) and after (2024-04-23 06:00:00, weight 0.24) in time 14:48:18 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:48:18 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:48:18 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:48:18 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:48: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'] 14:48:18 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:48:18 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:48:18 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:48:18 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:48:18 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.357483 (min) 0.00659201 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.0193367 (min) 0.596904 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:905: x_wind: -17.0021 (min) -9.72571 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:905: y_wind: -0.679115 (min) 3.88989 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:48:18 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 2.338248, mean: 5.092727, max: 7.392802 14:48:18 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:48:18 DEBUG opendrift.models.physics_methods:1058: min: 8.330573, mean: 12.069474, max: 14.812697 14:48:18 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 8.330573, mean: 12.069474, max: 14.812697 14:48:18 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:48:18 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:48:18 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:48:18 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:48:18 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:48:18 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:48:18 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:48:18 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:48:18 DEBUG opendrift.models.physics_methods:1058: min: 8.330572, mean: 12.069474, max: 14.812696 14:48:18 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:48:18 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.004437, dN_50: 0.000348 14:48:18 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:48:18 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.10843648544640964 14:48:18 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:48:18 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:48:18 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:48:18 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 102 surface elements 14:48:18 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 103 surface elements 14:48:18 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 101 surface elements 14:48:18 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 103 surface elements 14:48:18 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 102 surface elements 14:48:18 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 103 surface elements 14:48:18 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 103 surface elements 14:48:18 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 103 surface elements 14:48:18 DEBUG opendrift.models.physics_methods:912: Advecting 113 of 6000 elements above 0.100m with wind-sheared ocean current (0.006152 m/s - 0.368562 m/s) 14:48:18 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:48:18 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0006931579280825805 and 0.4368256885859911 m/s 14:48:18 DEBUG opendrift.models.basemodel:2097: 6000 active elements (0 deactivated) 14:48:18 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:48:18 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:48:18 INFO opendrift.models.basemodel:2011: 2024-04-23 04:42:41.057477 - step 39 of 120 - 6000 active elements (0 deactivated) 14:48:18 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:48:18 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:48:18 DEBUG opendrift.models.basemodel:2030: 34.89955197789221 <- latitude -> 35.374104551618096 14:48:18 DEBUG opendrift.models.basemodel:2035: 23.060774755186323 <- longitude -> 23.591302096639662 14:48:18 DEBUG opendrift.models.basemodel:2040: -121.36383396489616 <- z -> 0.0 14:48:18 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:48:18 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:48:18 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:48:18 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:48:18 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:48:18 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:48:18 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:48:18 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements 14:48:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:48:18 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:48:18 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:48:18 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:48:18 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:48:18 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:48:18 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:48:18 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:48:18 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:48:18 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements 14:48:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:48:18 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:48:18 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:48:18 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:48:18 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:48:18 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:48:18 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:48:18 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:48:18 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:48:18 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:48:18 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 6000 elements 14:48:18 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:48:18 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-23 03:00:00 (before) 2024-04-23 06:00:00 (after) 14:48:18 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-23 03:00:00) in space (linearNDFast) 14:48:18 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:48:18 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-23 06:00:00) in space (linearNDFast) 14:48:18 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:48:18 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-23 03:00:00, weight 0.43) and after (2024-04-23 06:00:00, weight 0.57) in time 14:48:18 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:48:18 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:48:18 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:48:18 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:48:18 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:48: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 14:48:18 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:48:18 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:48: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 14:48:18 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:48:18 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-23 03:00:00 (before) 2024-04-23 06:00:00 (after) 14:48:18 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-23 03:00:00) in space (linearNDFast) 14:48:18 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:48:18 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-23 06:00:00) in space (linearNDFast) 14:48:18 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:48:18 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-23 03:00:00, weight 0.43) and after (2024-04-23 06:00:00, weight 0.57) in time 14:48:18 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:48:18 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:48:18 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:48:18 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:48: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'] 14:48:18 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:48:18 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:48:18 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:48:18 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:48:18 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.326684 (min) 0.00814469 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.0220296 (min) 0.662253 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:905: x_wind: -16.7898 (min) -9.48521 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:905: y_wind: -0.929601 (min) 5.40825 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:48:18 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 2.234500, mean: 4.950823, max: 7.140661 14:48:18 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:48:18 DEBUG opendrift.models.physics_methods:1058: min: 8.143662, mean: 11.901666, max: 14.557902 14:48:18 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 8.143662, mean: 11.901666, max: 14.557902 14:48:18 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:48:18 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:48:18 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:48:18 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:48:18 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:48:18 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:48:18 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:48:18 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:48:18 DEBUG opendrift.models.physics_methods:1058: min: 8.143662, mean: 11.901667, max: 14.557902 14:48:18 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:48:18 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.004663, dN_50: 0.000366 14:48:18 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:48:18 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.10473823540155341 14:48:18 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:48:18 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:48:18 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:48:18 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 102 surface elements 14:48:18 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 101 surface elements 14:48:18 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 100 surface elements 14:48:18 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 103 surface elements 14:48:18 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 105 surface elements 14:48:18 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 104 surface elements 14:48:18 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 106 surface elements 14:48:18 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 105 surface elements 14:48:18 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 104 surface elements 14:48:18 DEBUG opendrift.models.physics_methods:912: Advecting 130 of 6000 elements above 0.100m with wind-sheared ocean current (0.025808 m/s - 0.377540 m/s) 14:48:18 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:48:18 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.001894280241066813 and 0.4302681773758936 m/s 14:48:18 DEBUG opendrift.models.basemodel:2097: 6000 active elements (0 deactivated) 14:48:18 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:48:18 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:48:18 INFO opendrift.models.basemodel:2011: 2024-04-23 05:42:41.057477 - step 40 of 120 - 6000 active elements (0 deactivated) 14:48:18 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:48:18 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:48:18 DEBUG opendrift.models.basemodel:2030: 34.89301706916017 <- latitude -> 35.404723071330196 14:48:18 DEBUG opendrift.models.basemodel:2035: 23.045256701171372 <- longitude -> 23.587457633422222 14:48:18 DEBUG opendrift.models.basemodel:2040: -120.18198787836685 <- z -> 0.0 14:48:18 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:48:18 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:48:18 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:48:18 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:48:18 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:48:18 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:48:18 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:48:18 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements 14:48:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:48:18 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:48:18 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:48:18 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:48:18 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:48:18 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:48:18 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:48:18 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:48:18 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:48:18 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements 14:48:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:48:18 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:48:18 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:48:18 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:48:18 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:48:18 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:48:18 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:48:18 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:48:18 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:48:18 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:48:18 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 6000 elements 14:48:18 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:48:18 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-23 03:00:00 (before) 2024-04-23 06:00:00 (after) 14:48:18 WARNING opendrift.readers.basereader.structured:324: Data block from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`. 14:48:18 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-23 03:00:00) in space (linearNDFast) 14:48:18 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:48:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:18 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-23 06:00:00) in space (linearNDFast) 14:48:18 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:48:18 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-23 03:00:00, weight 0.10) and after (2024-04-23 06:00:00, weight 0.90) in time 14:48:18 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:48:18 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:48:18 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:48:18 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:48:18 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:48: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 14:48:18 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:48:18 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:48: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 14:48:18 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:48:18 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-23 03:00:00 (before) 2024-04-23 06:00:00 (after) 14:48:18 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-23 03:00:00) in space (linearNDFast) 14:48:18 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:48:18 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-23 06:00:00) in space (linearNDFast) 14:48:18 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:48:18 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-23 03:00:00, weight 0.10) and after (2024-04-23 06:00:00, weight 0.90) in time 14:48:18 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:48:18 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:48:18 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:48:18 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:48: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'] 14:48:18 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:48:18 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:48:18 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:48:18 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:48:18 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.292808 (min) 0.0609628 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.028498 (min) 0.731802 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:905: x_wind: -16.5764 (min) -9.38276 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:905: y_wind: -1.06544 (min) 7.22346 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:48:18 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:48:18 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 2.193614, mean: 4.808715, max: 6.904738 14:48:18 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:48:18 DEBUG opendrift.models.physics_methods:1058: min: 8.068813, mean: 11.730019, max: 14.315389 14:48:18 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 8.068813, mean: 11.730019, max: 14.315389 14:48:18 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:48:18 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:48:18 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:48:18 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:48:18 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:48:18 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:48:18 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:48:18 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:48:18 DEBUG opendrift.models.physics_methods:1058: min: 8.068813, mean: 11.730020, max: 14.315389 14:48:18 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:48:18 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.004905, dN_50: 0.000385 14:48:18 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:48:18 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.10127790089402347 14:48:18 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:48:18 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:48:18 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:48:18 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 108 surface elements 14:48:18 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 108 surface elements 14:48:18 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 108 surface elements 14:48:18 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 107 surface elements 14:48:18 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 108 surface elements 14:48:18 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 107 surface elements 14:48:18 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 108 surface elements 14:48:18 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 107 surface elements 14:48:18 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 106 surface elements 14:48:18 DEBUG opendrift.models.physics_methods:912: Advecting 115 of 6000 elements above 0.100m with wind-sheared ocean current (0.049752 m/s - 0.401160 m/s) 14:48:18 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:48:18 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0005917362567909385 and 0.4374578012433827 m/s 14:48:18 DEBUG opendrift.models.basemodel:2097: 6000 active elements (0 deactivated) 14:48:18 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:48:18 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:48:18 INFO opendrift.models.basemodel:2011: 2024-04-23 06:42:41.057477 - step 41 of 120 - 6000 active elements (0 deactivated) 14:48:18 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:48:18 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:48:18 DEBUG opendrift.models.basemodel:2030: 34.88889012872551 <- latitude -> 35.44283867137365 14:48:18 DEBUG opendrift.models.basemodel:2035: 23.03347724063406 <- longitude -> 23.588889389179226 14:48:18 DEBUG opendrift.models.basemodel:2040: -118.99160155986408 <- z -> 0.0 14:48:18 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:48:18 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:48:18 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:48:18 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:48:18 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:48:18 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:48:18 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:48:18 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements 14:48:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:48:18 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:48:18 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:48:18 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:48:18 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:48:18 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:48:18 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:48:18 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:48:18 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:48:18 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements 14:48:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:48:18 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:48:18 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:48:18 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:48:18 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:48:18 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:48:18 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:48:18 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:48:18 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:48:18 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:48:18 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 6000 elements 14:48:18 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:48:18 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-23 06:00:00 (before) 2024-04-23 09:00:00 (after) 14:48:18 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity 14:48:28 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_sea_water_velocity to retrieve y_sea_water_velocity 14:48:31 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:48:31 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values 14:48:31 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values 14:48:31 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity'] 14:48:31 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 15x22x22) for time after (2024-04-23 09:00:00) 14:48:31 WARNING opendrift.readers.basereader.structured:324: Data block from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`. 14:48:31 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-23 06:00:00) in space (linearNDFast) 14:48:31 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:48:31 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-23 09:00:00) in space (linearNDFast) 14:48:31 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 1 14:48:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 1 14:48:31 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-23 06:00:00, weight 0.76) and after (2024-04-23 09:00:00, weight 0.24) in time 14:48:31 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:48:31 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:48:31 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:48:31 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:48:31 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:48: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 14:48:31 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:48:31 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:48: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 6000 elements 14:48:31 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:48:31 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-23 06:00:00 (before) 2024-04-23 09:00:00 (after) 14:48:31 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_wind to retrieve x_wind 14:48:32 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_wind to retrieve y_wind 14:48:32 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:48:32 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values 14:48:32 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values 14:48:32 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 7x7x1) for time after (2024-04-23 09:00:00) 14:48:32 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-23 06:00:00) in space (linearNDFast) 14:48:32 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:48:32 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-23 09:00:00) in space (linearNDFast) 14:48:32 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:48:32 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-23 06:00:00, weight 0.76) and after (2024-04-23 09:00:00, weight 0.24) in time 14:48:32 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:48:32 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:48:32 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:48:32 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:48:32 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'] 14:48:32 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:48:32 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:48:32 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:48:32 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:48:32 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.267785 (min) 0.159219 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.0411112 (min) 0.740144 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:905: x_wind: -15.7555 (min) -9.21308 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:905: y_wind: 0.180745 (min) 7.5357 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:48:32 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 2.091297, mean: 4.450192, max: 6.237403 14:48:32 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:48:32 DEBUG opendrift.models.physics_methods:1058: min: 7.878389, mean: 11.316332, max: 13.606033 14:48:32 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 7.878389, mean: 11.316332, max: 13.606033 14:48:32 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:48:32 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:48:32 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:48:32 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:48:32 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:48:32 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:48:32 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:48:32 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:48:32 DEBUG opendrift.models.physics_methods:1058: min: 7.878389, mean: 11.316332, max: 13.606032 14:48:32 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:48:32 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.005174, dN_50: 0.000406 14:48:32 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:48:32 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.09148992693296858 14:48:32 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:48:32 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:48:32 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:48:32 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 107 surface elements 14:48:32 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 107 surface elements 14:48:32 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 111 surface elements 14:48:32 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 112 surface elements 14:48:32 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 112 surface elements 14:48:32 DEBUG opendrift.models.physics_methods:912: Advecting 119 of 6000 elements above 0.100m with wind-sheared ocean current (0.055984 m/s - 0.382987 m/s) 14:48:32 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:48:32 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0013441601909525433 and 0.4220613910967817 m/s 14:48:32 DEBUG opendrift.models.basemodel:2097: 6000 active elements (0 deactivated) 14:48:32 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:48:32 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:48:32 INFO opendrift.models.basemodel:2011: 2024-04-23 07:42:41.057477 - step 42 of 120 - 6000 active elements (0 deactivated) 14:48:32 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:48:32 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:48:32 DEBUG opendrift.models.basemodel:2030: 34.88449276144356 <- latitude -> 35.46734436450727 14:48:32 DEBUG opendrift.models.basemodel:2035: 23.050292492269474 <- longitude -> 23.58583370510554 14:48:32 DEBUG opendrift.models.basemodel:2040: -118.16362219048344 <- z -> 0.0 14:48:32 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:48:32 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:48:32 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:48:32 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:48:32 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:48:32 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:48:32 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:48:32 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements 14:48:32 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:48:32 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:48:32 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:48:32 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:48:32 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:48:32 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:48:32 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:48:32 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:48:32 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:48:32 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements 14:48:32 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:48:32 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:48:32 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:48:32 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:48:32 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:48:32 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:48:32 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:48:32 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:48:32 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:48:32 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:48:32 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 6000 elements 14:48:32 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:48:32 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-23 06:00:00 (before) 2024-04-23 09:00:00 (after) 14:48:32 WARNING opendrift.readers.basereader.structured:324: Data block from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`. 14:48:32 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-23 06:00:00) in space (linearNDFast) 14:48:32 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-23 09:00:00) in space (linearNDFast) 14:48:32 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:48:32 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-23 06:00:00, weight 0.43) and after (2024-04-23 09:00:00, weight 0.57) in time 14:48:32 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:48:32 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:48:32 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:48:32 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:48:32 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:48:32 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd 14:48:32 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:48:32 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements 14:48:32 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 14:48:32 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:48:32 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-23 06:00:00 (before) 2024-04-23 09:00:00 (after) 14:48:32 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-23 06:00:00) in space (linearNDFast) 14:48:32 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:48:32 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-23 09:00:00) in space (linearNDFast) 14:48:32 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:48:32 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-23 06:00:00, weight 0.43) and after (2024-04-23 09:00:00, weight 0.57) in time 14:48:32 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:48:32 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:48:32 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:48:32 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:48:32 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'] 14:48:32 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:48:32 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:48:32 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:48:32 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:48:32 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.220213 (min) 0.338098 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.0614384 (min) 0.687422 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:905: x_wind: -14.6995 (min) -9.27176 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:905: y_wind: 1.85046 (min) 6.68753 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:48:32 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 2.261765, mean: 4.076725, max: 5.447343 14:48:32 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:48:32 DEBUG opendrift.models.physics_methods:1058: min: 8.193195, mean: 10.886784, max: 12.715163 14:48:32 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 8.193195, mean: 10.886784, max: 12.715163 14:48:32 DEBUG opendrift.models.basemodel:1656: Added status stranded 14:48:32 DEBUG opendrift.models.basemodel:1667: 1 elements scheduled for deactivation (stranded) 14:48:32 DEBUG opendrift.models.basemodel:1669: (z: -0.532578 to -0.532578) 14:48:32 DEBUG opendrift.models.basemodel:1687: Removed 1 elements. 14:48:32 DEBUG opendrift.models.basemodel:1690: Removed 1 values from environment. 14:48:32 DEBUG opendrift.models.basemodel:1695: remove items from profile for z 14:48:32 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_temperature 14:48:32 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_salinity 14:48:32 DEBUG opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity 14:48:32 DEBUG opendrift.models.basemodel:1699: Removed 1 values from environment_profiles. 14:48:32 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:48:32 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:48:32 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:48:32 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:48:32 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:48:32 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:48:32 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:48:32 DEBUG opendrift.models.physics_methods:1058: min: 8.193194, mean: 10.887103, max: 12.715163 14:48:32 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:48:32 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.005405, dN_50: 0.000424 14:48:32 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:48:32 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.07990187982807277 14:48:32 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:48:32 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:48:32 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:48:32 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 113 surface elements 14:48:32 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 113 surface elements 14:48:32 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 112 surface elements 14:48:32 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 113 surface elements 14:48:32 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 112 surface elements 14:48:32 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 114 surface elements 14:48:32 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 114 surface elements 14:48:32 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 114 surface elements 14:48:32 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 113 surface elements 14:48:32 DEBUG opendrift.models.physics_methods:912: Advecting 132 of 5999 elements above 0.100m with wind-sheared ocean current (0.007455 m/s - 0.369043 m/s) 14:48:32 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:48:32 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.003052916219988354 and 0.4533855744368452 m/s 14:48:32 DEBUG opendrift.models.basemodel:2097: 5999 active elements (1 deactivated) 14:48:32 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:48:32 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:48:32 INFO opendrift.models.basemodel:2011: 2024-04-23 08:42:41.057477 - step 43 of 120 - 5999 active elements (1 deactivated) 14:48:32 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:48:32 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:48:32 DEBUG opendrift.models.basemodel:2030: 34.88488130384459 <- latitude -> 35.48462241729165 14:48:32 DEBUG opendrift.models.basemodel:2035: 23.055481125176616 <- longitude -> 23.583599797033642 14:48:32 DEBUG opendrift.models.basemodel:2040: -117.20511248396703 <- z -> 0.0 14:48:32 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:48:32 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:48:32 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:48:32 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:48:32 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:48:32 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:48:32 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5999 elements 14:48:32 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5999 elements 14:48:32 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:48:32 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:48:32 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:48:32 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:48:32 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:48:32 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:48:32 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:48:32 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:48:32 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5999 elements 14:48:32 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5999 elements 14:48:32 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:48:32 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:48:32 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:48:32 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:48:32 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:48:32 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:48:32 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:48:32 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:48:32 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:48:32 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5999 elements 14:48:32 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5999 elements 14:48:32 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:48:32 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-23 06:00:00 (before) 2024-04-23 09:00:00 (after) 14:48:32 WARNING opendrift.readers.basereader.structured:324: Data block from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`. 14:48:32 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-23 06:00:00) in space (linearNDFast) 14:48:32 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1 14:48:32 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-23 09:00:00) in space (linearNDFast) 14:48:32 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:48:32 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-23 06:00:00, weight 0.10) and after (2024-04-23 09:00:00, weight 0.90) in time 14:48:32 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:48:32 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:48:32 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:48:32 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:48:32 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:48:32 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd 14:48:32 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:48:32 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5999 elements 14:48:32 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 14:48:32 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:48:32 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-23 06:00:00 (before) 2024-04-23 09:00:00 (after) 14:48:32 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-23 06:00:00) in space (linearNDFast) 14:48:32 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:48:32 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-23 09:00:00) in space (linearNDFast) 14:48:32 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:48:32 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-23 06:00:00, weight 0.10) and after (2024-04-23 09:00:00, weight 0.90) in time 14:48:32 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:48:32 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:48:32 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:48:32 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:48:32 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'] 14:48:32 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:48:32 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:48:32 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:48:32 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:48:32 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.178844 (min) 0.44922 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.0873544 (min) 0.644745 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:905: x_wind: -13.6506 (min) -9.26675 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:905: y_wind: 1.89393 (min) 6.10912 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:48:32 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:48:32 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 2.643435, mean: 3.800073, max: 4.761157 14:48:32 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:48:32 DEBUG opendrift.models.physics_methods:1058: min: 8.857555, mean: 10.570188, max: 11.887371 14:48:32 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 8.857555, mean: 10.570188, max: 11.887371 14:48:32 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:48:32 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:48:32 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:48:32 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:48:32 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:48:32 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:48:32 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:48:32 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:48:32 DEBUG opendrift.models.physics_methods:1058: min: 8.857555, mean: 10.570189, max: 11.887371 14:48:32 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:48:32 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.005567, dN_50: 0.000437 14:48:32 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:48:32 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.0698374060014189 14:48:32 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:48:32 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:48:32 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:48:32 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 114 surface elements 14:48:32 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 113 surface elements 14:48:32 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 112 surface elements 14:48:32 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 118 surface elements 14:48:32 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 117 surface elements 14:48:32 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 116 surface elements 14:48:33 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 115 surface elements 14:48:33 DEBUG opendrift.models.physics_methods:912: Advecting 126 of 5999 elements above 0.100m with wind-sheared ocean current (0.015738 m/s - 0.352383 m/s) 14:48:33 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:48:33 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.002181585517063871 and 0.431846734199277 m/s 14:48:33 DEBUG opendrift.models.basemodel:2097: 5999 active elements (1 deactivated) 14:48:33 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:48:33 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:48:33 INFO opendrift.models.basemodel:2011: 2024-04-23 09:42:41.057477 - step 44 of 120 - 5999 active elements (1 deactivated) 14:48:33 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:48:33 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:48:33 DEBUG opendrift.models.basemodel:2030: 34.88685651901432 <- latitude -> 35.51585445836228 14:48:33 DEBUG opendrift.models.basemodel:2035: 23.06218081658317 <- longitude -> 23.584567696119258 14:48:33 DEBUG opendrift.models.basemodel:2040: -116.45083750192902 <- z -> 0.0 14:48:33 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:48:33 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:48:33 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:48:33 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:48:33 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:48:33 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:48:33 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5999 elements 14:48:33 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5999 elements 14:48:33 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:48:33 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:48:33 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:48:33 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:48:33 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:48:33 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:48:33 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:48:33 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:48:33 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5999 elements 14:48:33 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5999 elements 14:48:33 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:48:33 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:48:33 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:48:33 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:48:33 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:48:33 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:48:33 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:48:33 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:48:33 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:48:33 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5999 elements 14:48:33 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5999 elements 14:48:33 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:48:33 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-23 09:00:00 (before) 2024-04-23 12:00:00 (after) 14:48:33 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity 14:48:43 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_sea_water_velocity to retrieve y_sea_water_velocity 14:48:50 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:48:50 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values 14:48:50 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values 14:48:50 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity'] 14:48:50 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 14x23x22) for time after (2024-04-23 12:00:00) 14:48:50 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-23 09:00:00) in space (linearNDFast) 14:48:50 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:48:50 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-23 12:00:00) in space (linearNDFast) 14:48:50 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:48:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 985 elements, expanding data 1 14:48:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 985 elements, expanding data 1 14:48:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 985 elements, expanding data 1 14:48:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 985 elements, expanding data 1 14:48:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 985 elements, expanding data 1 14:48:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 985 elements, expanding data 1 14:48:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 985 elements, expanding data 1 14:48:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 985 elements, expanding data 1 14:48:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 985 elements, expanding data 1 14:48:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 985 elements, expanding data 1 14:48:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 985 elements, expanding data 1 14:48:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 985 elements, expanding data 1 14:48:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 985 elements, expanding data 1 14:48:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 985 elements, expanding data 1 14:48:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 985 elements, expanding data 1 14:48:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 985 elements, expanding data 1 14:48:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 985 elements, expanding data 1 14:48:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 985 elements, expanding data 1 14:48:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 985 elements, expanding data 1 14:48:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 985 elements, expanding data 1 14:48:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 985 elements, expanding data 1 14:48:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 985 elements, expanding data 1 14:48:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 985 elements, expanding data 1 14:48:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 985 elements, expanding data 1 14:48:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 985 elements, expanding data 1 14:48:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 985 elements, expanding data 1 14:48:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 985 elements, expanding data 1 14:48:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 985 elements, expanding data 1 14:48:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 985 elements, expanding data 1 14:48:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 985 elements, expanding data 1 14:48:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 985 elements, expanding data 1 14:48:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 985 elements, expanding data 1 14:48:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 985 elements, expanding data 1 14:48:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 985 elements, expanding data 1 14:48:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 985 elements, expanding data 1 14:48:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 985 elements, expanding data 1 14:48:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 985 elements, expanding data 1 14:48:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 985 elements, expanding data 1 14:48:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 985 elements, expanding data 1 14:48:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 985 elements, expanding data 1 14:48:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 985 elements, expanding data 1 14:48:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 985 elements, expanding data 1 14:48:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 985 elements, expanding data 1 14:48:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 985 elements, expanding data 1 14:48:50 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-23 09:00:00, weight 0.76) and after (2024-04-23 12:00:00, weight 0.24) in time 14:48:50 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:48:50 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:48:50 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:48:50 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:48:50 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:48:50 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd 14:48:50 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:48:50 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5999 elements 14:48:50 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 14:48:50 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:48:50 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-23 09:00:00 (before) 2024-04-23 12:00:00 (after) 14:48:50 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_wind to retrieve x_wind 14:48:50 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_wind to retrieve y_wind 14:48:50 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:48:50 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values 14:48:50 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values 14:48:50 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 7x8x1) for time after (2024-04-23 12:00:00) 14:48:50 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-23 09:00:00) in space (linearNDFast) 14:48:50 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:48:50 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-23 12:00:00) in space (linearNDFast) 14:48:50 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:48:50 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-23 09:00:00, weight 0.76) and after (2024-04-23 12:00:00, weight 0.24) in time 14:48:50 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:48:50 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:48:50 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:48:50 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:48:50 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'] 14:48:50 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:48:50 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:48:50 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:48:50 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:48:50 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.149153 (min) 0.483294 (max) 14:48:50 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.0796891 (min) 0.641081 (max) 14:48:50 DEBUG opendrift.models.basemodel.environment:905: x_wind: -14.215 (min) -8.35554 (max) 14:48:50 DEBUG opendrift.models.basemodel.environment:905: y_wind: 2.11397 (min) 7.04203 (max) 14:48:50 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:48:50 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:48:50 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:48:50 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:48:50 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:48:50 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:48:50 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:48:50 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:48:50 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:48:50 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:48:50 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:48:50 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:48:50 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:48:50 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:48:50 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:48:50 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:48:50 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:48:50 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 2.363207, mean: 3.917429, max: 5.143944 14:48:50 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:48:50 DEBUG opendrift.models.physics_methods:1058: min: 8.374915, mean: 10.693493, max: 12.355994 14:48:50 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 8.374915, mean: 10.693493, max: 12.355994 14:48:50 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:48:50 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:48:50 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:48:50 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:48:50 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:48:50 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:48:50 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:48:50 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:48:50 DEBUG opendrift.models.physics_methods:1058: min: 8.374915, mean: 10.693492, max: 12.355993 14:48:50 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:48:50 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.005879, dN_50: 0.000461 14:48:50 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:48:50 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.07545184178764285 14:48:50 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:48:50 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:48:50 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:48:50 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 115 surface elements 14:48:50 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 115 surface elements 14:48:50 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 115 surface elements 14:48:51 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 119 surface elements 14:48:51 DEBUG opendrift.models.physics_methods:912: Advecting 130 of 5999 elements above 0.100m with wind-sheared ocean current (0.006026 m/s - 0.362214 m/s) 14:48:51 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:48:51 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.001954324760737503 and 0.43893360395662157 m/s 14:48:51 DEBUG opendrift.models.basemodel:2097: 5999 active elements (1 deactivated) 14:48:51 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:48:51 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:48:51 INFO opendrift.models.basemodel:2011: 2024-04-23 10:42:41.057477 - step 45 of 120 - 5999 active elements (1 deactivated) 14:48:51 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:48:51 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:48:51 DEBUG opendrift.models.basemodel:2030: 34.883443214285855 <- latitude -> 35.53803192142977 14:48:51 DEBUG opendrift.models.basemodel:2035: 23.070961413895226 <- longitude -> 23.580518278206416 14:48:51 DEBUG opendrift.models.basemodel:2040: -115.70732064753024 <- z -> 0.0 14:48:51 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:48:51 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:48:51 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:48:51 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:48:51 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:48:51 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:48:51 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5999 elements 14:48:51 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5999 elements 14:48:51 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:48:51 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:48:51 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:48:51 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:48:51 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:48:51 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:48:51 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:48:51 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:48:51 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5999 elements 14:48:51 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5999 elements 14:48:51 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:48:51 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:48:51 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:48:51 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:48:51 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:48:51 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:48:51 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:48:51 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:48:51 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:48:51 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5999 elements 14:48:51 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5999 elements 14:48:51 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:48:51 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-23 09:00:00 (before) 2024-04-23 12:00:00 (after) 14:48:51 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-23 09:00:00) in space (linearNDFast) 14:48:51 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:48:51 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-23 12:00:00) in space (linearNDFast) 14:48:51 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:48:51 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-23 09:00:00, weight 0.43) and after (2024-04-23 12:00:00, weight 0.57) in time 14:48:51 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:48:51 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:48:51 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:48:51 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:48:51 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:48:51 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd 14:48:51 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:48:51 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5999 elements 14:48:51 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 14:48:51 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:48:51 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-23 09:00:00 (before) 2024-04-23 12:00:00 (after) 14:48:51 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-23 09:00:00) in space (linearNDFast) 14:48:51 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:48:51 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-23 12:00:00) in space (linearNDFast) 14:48:51 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:48:51 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-23 09:00:00, weight 0.43) and after (2024-04-23 12:00:00, weight 0.57) in time 14:48:51 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:48:51 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:48:51 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:48:51 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:48:51 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'] 14:48:51 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:48:51 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:48:51 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:48:51 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:48:51 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.164733 (min) 0.524566 (max) 14:48:51 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.0626141 (min) 0.605083 (max) 14:48:51 DEBUG opendrift.models.basemodel.environment:905: x_wind: -15.4406 (min) -7.01836 (max) 14:48:51 DEBUG opendrift.models.basemodel.environment:905: y_wind: 2.45635 (min) 8.37869 (max) 14:48:51 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:48:51 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:48:51 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:48:51 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:48:51 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:48:51 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:48:51 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:48:51 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:48:51 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:48:51 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:48:51 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:48:51 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:48:51 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:48:51 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:48:51 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max) 14:48:51 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:48:51 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:48:51 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.745566, mean: 4.175192, max: 6.071822 14:48:51 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:48:51 DEBUG opendrift.models.physics_methods:1058: min: 7.197766, mean: 10.912618, max: 13.424221 14:48:51 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 7.197766, mean: 10.912618, max: 13.424221 14:48:51 DEBUG opendrift.models.basemodel:1667: 1 elements scheduled for deactivation (stranded) 14:48:51 DEBUG opendrift.models.basemodel:1669: (z: -18.814032 to -18.814032) 14:48:51 DEBUG opendrift.models.basemodel:1687: Removed 1 elements. 14:48:51 DEBUG opendrift.models.basemodel:1690: Removed 1 values from environment. 14:48:51 DEBUG opendrift.models.basemodel:1695: remove items from profile for z 14:48:51 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_temperature 14:48:51 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_salinity 14:48:51 DEBUG opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity 14:48:51 DEBUG opendrift.models.basemodel:1699: Removed 1 values from environment_profiles. 14:48:51 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:48:51 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:48:51 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:48:51 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:48:51 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:48:51 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:48:51 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:48:51 DEBUG opendrift.models.physics_methods:1058: min: 7.197766, mean: 10.913175, max: 13.424221 14:48:51 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:48:51 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.006358, dN_50: 0.000499 14:48:51 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:48:51 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.08906129308172898 14:48:51 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:48:51 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:48:51 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:48:51 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 120 surface elements 14:48:51 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 123 surface elements 14:48:51 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 127 surface elements 14:48:51 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 127 surface elements 14:48:51 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 126 surface elements 14:48:51 DEBUG opendrift.models.physics_methods:912: Advecting 141 of 5998 elements above 0.100m with wind-sheared ocean current (0.025715 m/s - 0.393726 m/s) 14:48:51 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:48:51 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0017201778431136698 and 0.4326802342501181 m/s 14:48:51 DEBUG opendrift.models.basemodel:2097: 5998 active elements (2 deactivated) 14:48:51 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:48:51 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:48:51 INFO opendrift.models.basemodel:2011: 2024-04-23 11:42:41.057477 - step 46 of 120 - 5998 active elements (2 deactivated) 14:48:51 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:48:51 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:48:51 DEBUG opendrift.models.basemodel:2030: 34.881553524299115 <- latitude -> 35.55440025590384 14:48:51 DEBUG opendrift.models.basemodel:2035: 23.071279286849364 <- longitude -> 23.58098926467695 14:48:51 DEBUG opendrift.models.basemodel:2040: -114.5768998111595 <- z -> 0.0 14:48:51 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:48:51 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:48:51 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:48:51 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:48:51 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:48:51 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:48:51 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5998 elements 14:48:51 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5998 elements 14:48:51 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:48:51 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:48:51 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:48:51 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:48:51 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:48:51 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:48:51 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:48:51 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:48:51 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5998 elements 14:48:51 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5998 elements 14:48:51 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:48:51 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:48:51 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:48:51 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:48:51 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:48:51 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:48:51 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:48:51 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:48:51 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:48:51 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5998 elements 14:48:51 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5998 elements 14:48:51 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:48:51 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-23 09:00:00 (before) 2024-04-23 12:00:00 (after) 14:48:51 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-23 09:00:00) in space (linearNDFast) 14:48:51 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:48:51 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-23 12:00:00) in space (linearNDFast) 14:48:51 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:48:51 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-23 09:00:00, weight 0.10) and after (2024-04-23 12:00:00, weight 0.90) in time 14:48:51 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:48:51 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:48:51 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:48:51 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:48:51 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:48:51 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd 14:48:51 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:48:51 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5998 elements 14:48:51 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 5998 elements 14:48:51 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:48:51 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-23 09:00:00 (before) 2024-04-23 12:00:00 (after) 14:48:51 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-23 09:00:00) in space (linearNDFast) 14:48:51 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:48:51 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-23 12:00:00) in space (linearNDFast) 14:48:51 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:48:51 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-23 09:00:00, weight 0.10) and after (2024-04-23 12:00:00, weight 0.90) in time 14:48:51 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:48:51 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:48:51 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:48:51 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:48:51 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'] 14:48:51 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:48:51 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:48:51 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:48:51 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:48:51 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.205898 (min) 0.565974 (max) 14:48:51 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.0480826 (min) 0.585548 (max) 14:48:51 DEBUG opendrift.models.basemodel.environment:905: x_wind: -16.6681 (min) -5.56707 (max) 14:48:51 DEBUG opendrift.models.basemodel.environment:905: y_wind: 2.77904 (min) 9.98898 (max) 14:48:51 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:48:51 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:48:51 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:48:51 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:48:51 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:48:51 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:48:51 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:48:51 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:48:51 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:48:51 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:48:51 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:48:51 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:48:51 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:48:51 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:48:51 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max) 14:48:51 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:48:51 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:48:51 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.192913, mean: 4.446213, max: 7.094421 14:48:51 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:48:51 DEBUG opendrift.models.physics_methods:1058: min: 5.950233, mean: 11.068303, max: 14.510690 14:48:51 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 5.950233, mean: 11.068303, max: 14.510690 14:48:51 DEBUG opendrift.models.basemodel:1667: 4 elements scheduled for deactivation (stranded) 14:48:51 DEBUG opendrift.models.basemodel:1669: (z: -16.110707 to -2.607198) 14:48:51 DEBUG opendrift.models.basemodel:1687: Removed 4 elements. 14:48:51 DEBUG opendrift.models.basemodel:1690: Removed 4 values from environment. 14:48:51 DEBUG opendrift.models.basemodel:1695: remove items from profile for z 14:48:51 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_temperature 14:48:51 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_salinity 14:48:51 DEBUG opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity 14:48:51 DEBUG opendrift.models.basemodel:1699: Removed 4 values from environment_profiles. 14:48:51 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:48:51 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:48:51 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:48:51 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:48:51 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:48:51 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:48:51 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:48:51 DEBUG opendrift.models.physics_methods:1058: min: 5.950233, mean: 11.070323, max: 14.510690 14:48:51 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:48:51 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.006971, dN_50: 0.000547 14:48:51 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:48:51 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.10406004108912706 14:48:51 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:48:51 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:48:51 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:48:51 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 126 surface elements 14:48:51 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 128 surface elements 14:48:51 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 128 surface elements 14:48:51 DEBUG opendrift.models.physics_methods:912: Advecting 139 of 5994 elements above 0.100m with wind-sheared ocean current (0.036493 m/s - 0.430800 m/s) 14:48:51 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:48:51 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0017632036146918823 and 0.47337881343124055 m/s 14:48:51 DEBUG opendrift.models.basemodel:2097: 5994 active elements (6 deactivated) 14:48:51 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:48:51 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:48:51 INFO opendrift.models.basemodel:2011: 2024-04-23 12:42:41.057477 - step 47 of 120 - 5994 active elements (6 deactivated) 14:48:51 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:48:51 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:48:51 DEBUG opendrift.models.basemodel:2030: 34.88033398789894 <- latitude -> 35.58166332735936 14:48:51 DEBUG opendrift.models.basemodel:2035: 23.07865408650046 <- longitude -> 23.57801943917125 14:48:51 DEBUG opendrift.models.basemodel:2040: -113.91193022292295 <- z -> 0.0 14:48:51 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:48:51 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:48:51 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:48:51 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:48:51 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:48:51 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:48:51 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5994 elements 14:48:51 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5994 elements 14:48:51 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:48:51 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:48:51 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:48:51 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:48:51 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:48:51 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:48:51 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:48:51 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:48:51 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5994 elements 14:48:51 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5994 elements 14:48:51 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:48:51 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:48:51 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:48:51 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:48:51 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:48:51 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:48:51 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:48:51 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:48:51 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:48:51 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5994 elements 14:48:51 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5994 elements 14:48:51 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:48:51 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-23 12:00:00 (before) 2024-04-23 15:00:00 (after) 14:48:51 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity 14:49:00 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_sea_water_velocity to retrieve y_sea_water_velocity 14:49:06 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:49:06 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values 14:49:06 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values 14:49:06 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity'] 14:49:06 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 14x26x22) for time after (2024-04-23 15:00:00) 14:49:06 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-23 12:00:00) in space (linearNDFast) 14:49:06 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:49:06 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-23 15:00:00) in space (linearNDFast) 14:49:06 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:49:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1107 elements, expanding data 1 14:49:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1107 elements, expanding data 1 14:49:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1107 elements, expanding data 1 14:49:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1107 elements, expanding data 1 14:49:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1107 elements, expanding data 1 14:49:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1107 elements, expanding data 1 14:49:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1107 elements, expanding data 1 14:49:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1107 elements, expanding data 1 14:49:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1107 elements, expanding data 1 14:49:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1107 elements, expanding data 1 14:49:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1107 elements, expanding data 1 14:49:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1107 elements, expanding data 1 14:49:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1107 elements, expanding data 1 14:49:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1107 elements, expanding data 1 14:49:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1107 elements, expanding data 1 14:49:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1107 elements, expanding data 1 14:49:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1107 elements, expanding data 1 14:49:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1107 elements, expanding data 1 14:49:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1107 elements, expanding data 1 14:49:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1107 elements, expanding data 1 14:49:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1107 elements, expanding data 1 14:49:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1107 elements, expanding data 1 14:49:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1107 elements, expanding data 1 14:49:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1107 elements, expanding data 1 14:49:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1107 elements, expanding data 1 14:49:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1107 elements, expanding data 1 14:49:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1107 elements, expanding data 1 14:49:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1107 elements, expanding data 1 14:49:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1107 elements, expanding data 1 14:49:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1107 elements, expanding data 1 14:49:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1107 elements, expanding data 1 14:49:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1107 elements, expanding data 1 14:49:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1107 elements, expanding data 1 14:49:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1107 elements, expanding data 1 14:49:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1107 elements, expanding data 1 14:49:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1107 elements, expanding data 1 14:49:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1107 elements, expanding data 1 14:49:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1107 elements, expanding data 1 14:49:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1107 elements, expanding data 1 14:49:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1107 elements, expanding data 1 14:49:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1107 elements, expanding data 1 14:49:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1107 elements, expanding data 1 14:49:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1107 elements, expanding data 1 14:49:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1107 elements, expanding data 1 14:49:06 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-23 12:00:00, weight 0.76) and after (2024-04-23 15:00:00, weight 0.24) in time 14:49:06 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:49:06 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:49:06 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:49:06 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:49:06 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:49: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 14:49:06 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:49:06 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5994 elements 14:49: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 5994 elements 14:49:06 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:49:06 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-23 12:00:00 (before) 2024-04-23 15:00:00 (after) 14:49:06 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_wind to retrieve x_wind 14:49:06 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_wind to retrieve y_wind 14:49:06 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:49:06 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values 14:49:06 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values 14:49:06 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 7x8x1) for time after (2024-04-23 15:00:00) 14:49:06 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-23 12:00:00) in space (linearNDFast) 14:49:06 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:49:06 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-23 15:00:00) in space (linearNDFast) 14:49:06 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:49:06 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-23 12:00:00, weight 0.76) and after (2024-04-23 15:00:00, weight 0.24) in time 14:49:06 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:49:06 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:49:06 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:49:06 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:49:06 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'] 14:49:06 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:49:06 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:49:06 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:49:06 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:49:06 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.224743 (min) 0.555643 (max) 14:49:06 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.0620483 (min) 0.538837 (max) 14:49:06 DEBUG opendrift.models.basemodel.environment:905: x_wind: -15.8392 (min) -4.89233 (max) 14:49:06 DEBUG opendrift.models.basemodel.environment:905: y_wind: 3.25391 (min) 11.3362 (max) 14:49:06 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:49:06 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:49:06 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:49:06 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:49:06 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:49:06 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:49:06 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:49:06 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:49:06 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:49:06 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:49:06 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:49:06 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:49:06 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:49:06 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:49:06 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max) 14:49:06 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:49:06 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:49:06 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.573046, mean: 4.218966, max: 6.518795 14:49:06 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:49:06 DEBUG opendrift.models.physics_methods:1058: min: 6.832826, mean: 10.882167, max: 13.909554 14:49:06 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 6.832826, mean: 10.882167, max: 13.909554 14:49:06 DEBUG opendrift.models.basemodel:1667: 2 elements scheduled for deactivation (stranded) 14:49:06 DEBUG opendrift.models.basemodel:1669: (z: -16.290087 to -6.318277) 14:49:06 DEBUG opendrift.models.basemodel:1687: Removed 2 elements. 14:49:06 DEBUG opendrift.models.basemodel:1690: Removed 2 values from environment. 14:49:06 DEBUG opendrift.models.basemodel:1695: remove items from profile for z 14:49:06 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_temperature 14:49:06 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_salinity 14:49:06 DEBUG opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity 14:49:06 DEBUG opendrift.models.basemodel:1699: Removed 2 values from environment_profiles. 14:49:06 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:49:06 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:49:06 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:49:06 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:49:06 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:49:06 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:49:06 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:49:06 DEBUG opendrift.models.physics_methods:1058: min: 6.832826, mean: 10.883300, max: 13.909554 14:49:06 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:49:06 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.007116, dN_50: 0.000558 14:49:06 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:49:06 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.0956171737855937 14:49:06 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:49:06 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:49:06 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:49:06 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 130 surface elements 14:49:06 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 129 surface elements 14:49:06 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 128 surface elements 14:49:06 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 128 surface elements 14:49:06 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 127 surface elements 14:49:06 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 125 surface elements 14:49:06 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 124 surface elements 14:49:06 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 123 surface elements 14:49:06 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 131 surface elements 14:49:06 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 132 surface elements 14:49:06 DEBUG opendrift.models.physics_methods:912: Advecting 141 of 5992 elements above 0.100m with wind-sheared ocean current (0.016488 m/s - 0.435546 m/s) 14:49:06 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:49:06 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0020695902587383247 and 0.442703227881803 m/s 14:49:06 DEBUG opendrift.models.basemodel:2097: 5992 active elements (8 deactivated) 14:49:06 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:49:06 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:49:06 INFO opendrift.models.basemodel:2011: 2024-04-23 13:42:41.057477 - step 48 of 120 - 5992 active elements (8 deactivated) 14:49:06 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:49:06 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:49:06 DEBUG opendrift.models.basemodel:2030: 34.884258663348874 <- latitude -> 35.599713899907215 14:49:06 DEBUG opendrift.models.basemodel:2035: 23.080546105123247 <- longitude -> 23.57090398916549 14:49:06 DEBUG opendrift.models.basemodel:2040: -113.0162611310801 <- z -> 0.0 14:49:06 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:49:06 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:49:06 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:49:06 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:49:06 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:49:06 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:49:06 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5992 elements 14:49:06 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5992 elements 14:49:06 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:49:06 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:49:06 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:49:06 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:49:06 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:49:06 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:49:06 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:49:06 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:49:06 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5992 elements 14:49:06 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5992 elements 14:49:06 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:49:06 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:49:06 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:49:06 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:49:06 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:49:06 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:49:06 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:49:06 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:49:06 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:49:06 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5992 elements 14:49:06 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5992 elements 14:49:06 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:49:06 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-23 12:00:00 (before) 2024-04-23 15:00:00 (after) 14:49:06 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-23 12:00:00) in space (linearNDFast) 14:49:06 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:49:06 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-23 15:00:00) in space (linearNDFast) 14:49:06 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:49:06 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-23 12:00:00, weight 0.43) and after (2024-04-23 15:00:00, weight 0.57) in time 14:49:06 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:49:06 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:49:06 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:49:06 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:49:06 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:49: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 14:49:06 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:49:06 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5992 elements 14:49: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 5992 elements 14:49:06 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:49:06 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-23 12:00:00 (before) 2024-04-23 15:00:00 (after) 14:49:06 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-23 12:00:00) in space (linearNDFast) 14:49:06 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:49:06 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-23 15:00:00) in space (linearNDFast) 14:49:06 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:49:06 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-23 12:00:00, weight 0.43) and after (2024-04-23 15:00:00, weight 0.57) in time 14:49:06 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:49:06 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:49:06 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:49:06 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:49:06 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'] 14:49:06 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:49:06 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:49:06 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:49:06 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:49:06 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.238597 (min) 0.480435 (max) 14:49:06 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.160941 (min) 0.470032 (max) 14:49:06 DEBUG opendrift.models.basemodel.environment:905: x_wind: -14.1791 (min) -4.70182 (max) 14:49:06 DEBUG opendrift.models.basemodel.environment:905: y_wind: 3.79748 (min) 12.6664 (max) 14:49:06 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:49:06 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:49:06 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:49:06 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:49:06 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:49:06 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:49:06 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:49:06 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:49:06 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:49:06 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:49:06 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:49:06 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:49:06 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:49:06 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:49:06 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max) 14:49:06 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:49:06 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:49:06 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 2.611679, mean: 4.038797, max: 5.393458 14:49:06 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:49:06 DEBUG opendrift.models.physics_methods:1058: min: 8.804191, mean: 10.864575, max: 12.652118 14:49:06 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 8.804191, mean: 10.864575, max: 12.652118 14:49:06 DEBUG opendrift.models.basemodel:1667: 7 elements scheduled for deactivation (stranded) 14:49:06 DEBUG opendrift.models.basemodel:1669: (z: -19.683013 to -8.857314) 14:49:06 DEBUG opendrift.models.basemodel:1687: Removed 7 elements. 14:49:06 DEBUG opendrift.models.basemodel:1690: Removed 7 values from environment. 14:49:06 DEBUG opendrift.models.basemodel:1695: remove items from profile for z 14:49:06 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_temperature 14:49:06 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_salinity 14:49:06 DEBUG opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity 14:49:06 DEBUG opendrift.models.basemodel:1699: Removed 7 values from environment_profiles. 14:49:06 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:49:06 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:49:06 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:49:06 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:49:06 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:49:06 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:49:06 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:49:06 DEBUG opendrift.models.physics_methods:1058: min: 8.830953, mean: 10.866711, max: 12.652118 14:49:06 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:49:06 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.006812, dN_50: 0.000535 14:49:06 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:49:06 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.07911154276037427 14:49:06 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:49:06 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:49:06 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:49:06 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 133 surface elements 14:49:06 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 132 surface elements 14:49:06 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 131 surface elements 14:49:06 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 135 surface elements 14:49:06 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 134 surface elements 14:49:06 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 133 surface elements 14:49:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 134 surface elements 14:49:07 DEBUG opendrift.models.physics_methods:912: Advecting 149 of 5985 elements above 0.100m with wind-sheared ocean current (0.013960 m/s - 0.442525 m/s) 14:49:07 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:49:07 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.000773035387765198 and 0.42593285531479186 m/s 14:49:07 DEBUG opendrift.models.basemodel:2097: 5985 active elements (15 deactivated) 14:49:07 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:49:07 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:49:07 INFO opendrift.models.basemodel:2011: 2024-04-23 14:42:41.057477 - step 49 of 120 - 5985 active elements (15 deactivated) 14:49:07 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:49:07 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:49:07 DEBUG opendrift.models.basemodel:2030: 34.88431035391151 <- latitude -> 35.61345416479557 14:49:07 DEBUG opendrift.models.basemodel:2035: 23.083887297800075 <- longitude -> 23.558348651187583 14:49:07 DEBUG opendrift.models.basemodel:2040: -112.4098052964316 <- z -> 0.0 14:49:07 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:49:07 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:49:07 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:49:07 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:49:07 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:49:07 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:49:07 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5985 elements 14:49:07 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5985 elements 14:49:07 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:49:07 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:49:07 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:49:07 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:49:07 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:49:07 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:49:07 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:49:07 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:49:07 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5985 elements 14:49:07 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5985 elements 14:49:07 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:49:07 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:49:07 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:49:07 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:49:07 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:49:07 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:49:07 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:49:07 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:49:07 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:49:07 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5985 elements 14:49:07 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5985 elements 14:49:07 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:49:07 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-23 12:00:00 (before) 2024-04-23 15:00:00 (after) 14:49:07 WARNING opendrift.readers.basereader.structured:324: Data block from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`. 14:49:07 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-23 12:00:00) in space (linearNDFast) 14:49:07 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:49:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:49:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:49:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:49:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:49:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:49:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:49:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:49:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:49:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:49:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:49:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:49:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:49:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:49:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:49:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:49:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:49:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:49:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:49:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:49:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:49:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:49:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:49:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:49:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:49:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:49:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:49:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:49:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:49:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:49:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:49:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:49:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:49:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:49:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:49:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:49:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:49:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:49:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:49:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:49:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:49:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:49:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:49:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:49:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:49:07 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-23 15:00:00) in space (linearNDFast) 14:49:07 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:49:07 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-23 12:00:00, weight 0.10) and after (2024-04-23 15:00:00, weight 0.90) in time 14:49:07 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:49:07 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:49:07 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:49:07 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:49:07 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:49: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 14:49:07 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:49:07 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5985 elements 14:49: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 5985 elements 14:49:07 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:49:07 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-23 12:00:00 (before) 2024-04-23 15:00:00 (after) 14:49:07 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-23 12:00:00) in space (linearNDFast) 14:49:07 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:49:07 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-23 15:00:00) in space (linearNDFast) 14:49:07 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:49:07 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-23 12:00:00, weight 0.10) and after (2024-04-23 15:00:00, weight 0.90) in time 14:49:07 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:49:07 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:49:07 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:49:07 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:49: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'] 14:49:07 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:49:07 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:49:07 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:49:07 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:49:07 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.252311 (min) 0.422137 (max) 14:49:07 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.233782 (min) 0.412445 (max) 14:49:07 DEBUG opendrift.models.basemodel.environment:905: x_wind: -12.7042 (min) -4.27822 (max) 14:49:07 DEBUG opendrift.models.basemodel.environment:905: y_wind: 4.40647 (min) 14.5457 (max) 14:49:07 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:49:07 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:49:07 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:49:07 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:49:07 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:49:07 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:49:07 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:49:07 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:49:07 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:49:07 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:49:07 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:49:07 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:49:07 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:49:07 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:49:07 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max) 14:49:07 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:49:07 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:49:07 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 2.800816, mean: 4.170529, max: 6.167747 14:49:07 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:49:07 DEBUG opendrift.models.physics_methods:1058: min: 9.117418, mean: 11.116553, max: 13.529845 14:49:07 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 9.117418, mean: 11.116553, max: 13.529845 14:49:07 DEBUG opendrift.models.basemodel:1667: 10 elements scheduled for deactivation (stranded) 14:49:07 DEBUG opendrift.models.basemodel:1669: (z: -17.649774 to -0.374172) 14:49:07 DEBUG opendrift.models.basemodel:1687: Removed 10 elements. 14:49:07 DEBUG opendrift.models.basemodel:1690: Removed 10 values from environment. 14:49:07 DEBUG opendrift.models.basemodel:1695: remove items from profile for z 14:49:07 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_temperature 14:49:07 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_salinity 14:49:07 DEBUG opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity 14:49:07 DEBUG opendrift.models.basemodel:1699: Removed 10 values from environment_profiles. 14:49:07 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:49:07 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:49:07 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:49:07 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:49:07 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:49:07 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:49:07 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:49:07 DEBUG opendrift.models.physics_methods:1058: min: 9.117418, mean: 11.117547, max: 13.529845 14:49:07 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:49:07 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.006441, dN_50: 0.000505 14:49:07 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:49:07 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.09046824607391424 14:49:07 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:49:07 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:49:07 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:49:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 135 surface elements 14:49:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 135 surface elements 14:49:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 133 surface elements 14:49:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 131 surface elements 14:49:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 130 surface elements 14:49:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 129 surface elements 14:49:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 127 surface elements 14:49:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 128 surface elements 14:49:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 127 surface elements 14:49:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 126 surface elements 14:49:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 126 surface elements 14:49:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 126 surface elements 14:49:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 127 surface elements 14:49:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 126 surface elements 14:49:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 125 surface elements 14:49:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 125 surface elements 14:49:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 124 surface elements 14:49:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 124 surface elements 14:49:07 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 123 surface elements 14:49:07 DEBUG opendrift.models.physics_methods:912: Advecting 130 of 5975 elements above 0.100m with wind-sheared ocean current (0.061755 m/s - 0.475026 m/s) 14:49:07 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:49:07 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.001992275005876001 and 0.46930006002513125 m/s 14:49:07 DEBUG opendrift.models.basemodel:2097: 5975 active elements (25 deactivated) 14:49:07 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:49:07 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:49:07 INFO opendrift.models.basemodel:2011: 2024-04-23 15:42:41.057477 - step 50 of 120 - 5975 active elements (25 deactivated) 14:49:07 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:49:07 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:49:07 DEBUG opendrift.models.basemodel:2030: 34.882254975140306 <- latitude -> 35.638514217604616 14:49:07 DEBUG opendrift.models.basemodel:2035: 23.089566105223245 <- longitude -> 23.559319321134748 14:49:07 DEBUG opendrift.models.basemodel:2040: -111.52887881152346 <- z -> 0.0 14:49:07 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:49:07 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:49:07 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:49:07 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:49:07 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:49:07 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:49:07 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5975 elements 14:49:07 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5975 elements 14:49:07 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:49:07 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:49:07 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:49:07 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:49:07 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:49:07 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:49:07 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:49:07 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:49:07 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5975 elements 14:49:07 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5975 elements 14:49:07 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:49:07 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:49:07 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:49:07 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:49:07 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:49:07 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:49:07 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:49:07 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:49:07 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:49:07 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5975 elements 14:49:07 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5975 elements 14:49:07 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:49:07 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-23 15:00:00 (before) 2024-04-23 18:00:00 (after) 14:49:07 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity 14:49:17 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_sea_water_velocity to retrieve y_sea_water_velocity 14:49:21 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:49:21 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values 14:49:21 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values 14:49:21 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity'] 14:49:21 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 14x27x22) for time after (2024-04-23 18:00:00) 14:49:21 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-23 15:00:00) in space (linearNDFast) 14:49:21 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:49:21 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-23 18:00:00) in space (linearNDFast) 14:49:21 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:49:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1005 elements, expanding data 1 14:49:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1005 elements, expanding data 1 14:49:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1005 elements, expanding data 1 14:49:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1005 elements, expanding data 1 14:49:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1005 elements, expanding data 1 14:49:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1005 elements, expanding data 1 14:49:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1005 elements, expanding data 1 14:49:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1005 elements, expanding data 1 14:49:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1005 elements, expanding data 1 14:49:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1005 elements, expanding data 1 14:49:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1005 elements, expanding data 1 14:49:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1005 elements, expanding data 1 14:49:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1005 elements, expanding data 1 14:49:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1005 elements, expanding data 1 14:49:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1005 elements, expanding data 1 14:49:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1005 elements, expanding data 1 14:49:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1005 elements, expanding data 1 14:49:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1005 elements, expanding data 1 14:49:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1005 elements, expanding data 1 14:49:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1005 elements, expanding data 1 14:49:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1005 elements, expanding data 1 14:49:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1005 elements, expanding data 1 14:49:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1005 elements, expanding data 1 14:49:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1005 elements, expanding data 1 14:49:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1005 elements, expanding data 1 14:49:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1005 elements, expanding data 1 14:49:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1005 elements, expanding data 1 14:49:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1005 elements, expanding data 1 14:49:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1005 elements, expanding data 1 14:49:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1005 elements, expanding data 1 14:49:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1005 elements, expanding data 1 14:49:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1005 elements, expanding data 1 14:49:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1005 elements, expanding data 1 14:49:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1005 elements, expanding data 1 14:49:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1005 elements, expanding data 1 14:49:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1005 elements, expanding data 1 14:49:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1005 elements, expanding data 1 14:49:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1005 elements, expanding data 1 14:49:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1005 elements, expanding data 1 14:49:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1005 elements, expanding data 1 14:49:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1005 elements, expanding data 1 14:49:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1005 elements, expanding data 1 14:49:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1005 elements, expanding data 1 14:49:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1005 elements, expanding data 1 14:49:21 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-23 15:00:00, weight 0.76) and after (2024-04-23 18:00:00, weight 0.24) in time 14:49:21 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:49:21 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:49:21 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:49:21 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:49:21 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:49: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 14:49:21 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:49:21 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5975 elements 14:49: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 5975 elements 14:49:21 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:49:21 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-23 15:00:00 (before) 2024-04-23 18:00:00 (after) 14:49:21 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_wind to retrieve x_wind 14:49:21 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_wind to retrieve y_wind 14:49:21 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:49:21 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values 14:49:21 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values 14:49:21 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 7x8x1) for time after (2024-04-23 18:00:00) 14:49:21 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-23 15:00:00) in space (linearNDFast) 14:49:21 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:49:21 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-23 18:00:00) in space (linearNDFast) 14:49:21 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:49:21 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-23 15:00:00, weight 0.76) and after (2024-04-23 18:00:00, weight 0.24) in time 14:49:21 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:49:21 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:49:21 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:49:21 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:49: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'] 14:49:21 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:49:21 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:49:21 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:49:21 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:49:21 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.256166 (min) 0.351677 (max) 14:49:21 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.277502 (min) 0.309919 (max) 14:49:21 DEBUG opendrift.models.basemodel.environment:905: x_wind: -9.62762 (min) -2.93761 (max) 14:49:21 DEBUG opendrift.models.basemodel.environment:905: y_wind: 4.03679 (min) 13.9885 (max) 14:49:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:49:21 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:49:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:49:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:49:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:49:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:49:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:49:21 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:49:21 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:49:21 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:49:21 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:49:21 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:49:21 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:49:21 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:49:21 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max) 14:49:22 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:49:22 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:49:22 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.444094, mean: 3.127566, max: 5.042726 14:49:22 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:49:22 DEBUG opendrift.models.physics_methods:1058: min: 6.546774, mean: 9.554388, max: 12.233825 14:49:22 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 6.546774, mean: 9.554388, max: 12.233825 14:49:22 DEBUG opendrift.models.basemodel:1667: 18 elements scheduled for deactivation (stranded) 14:49:22 DEBUG opendrift.models.basemodel:1669: (z: -19.547025 to -0.986394) 14:49:22 DEBUG opendrift.models.basemodel:1687: Removed 18 elements. 14:49:22 DEBUG opendrift.models.basemodel:1690: Removed 18 values from environment. 14:49:22 DEBUG opendrift.models.basemodel:1695: remove items from profile for z 14:49:22 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_temperature 14:49:22 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_salinity 14:49:22 DEBUG opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity 14:49:22 DEBUG opendrift.models.basemodel:1699: Removed 18 values from environment_profiles. 14:49:22 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:49:22 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:49:22 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:49:22 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:49:22 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:49:22 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:49:22 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:49:22 DEBUG opendrift.models.physics_methods:1058: min: 6.546774, mean: 9.553205, max: 12.233825 14:49:22 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:49:22 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.006962, dN_50: 0.000546 14:49:22 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:49:22 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.07396726180898935 14:49:22 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:49:22 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:49:22 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:49:22 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 125 surface elements 14:49:22 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 124 surface elements 14:49:22 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 124 surface elements 14:49:22 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 123 surface elements 14:49:22 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 123 surface elements 14:49:22 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 122 surface elements 14:49:22 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 121 surface elements 14:49:22 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 122 surface elements 14:49:22 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 121 surface elements 14:49:22 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 120 surface elements 14:49:22 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 120 surface elements 14:49:22 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 120 surface elements 14:49:22 DEBUG opendrift.models.physics_methods:912: Advecting 131 of 5957 elements above 0.100m with wind-sheared ocean current (0.049535 m/s - 0.427967 m/s) 14:49:22 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:49:22 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0025286954941569264 and 0.43729259976093265 m/s 14:49:22 DEBUG opendrift.models.basemodel:2097: 5957 active elements (43 deactivated) 14:49:22 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:49:22 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:49:22 INFO opendrift.models.basemodel:2011: 2024-04-23 16:42:41.057477 - step 51 of 120 - 5957 active elements (43 deactivated) 14:49:22 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:49:22 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:49:22 DEBUG opendrift.models.basemodel:2030: 34.879900699286665 <- latitude -> 35.65808779105464 14:49:22 DEBUG opendrift.models.basemodel:2035: 23.084396230019617 <- longitude -> 23.55630302963029 14:49:22 DEBUG opendrift.models.basemodel:2040: -110.53598269422476 <- z -> 0.0 14:49:22 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:49:22 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:49:22 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:49:22 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:49:22 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:49:22 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:49:22 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5957 elements 14:49:22 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5957 elements 14:49:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:49:22 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:49:22 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:49:22 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:49:22 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:49:22 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:49:22 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:49:22 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:49:22 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5957 elements 14:49:22 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5957 elements 14:49:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:49:22 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:49:22 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:49:22 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:49:22 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:49:22 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:49:22 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:49:22 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:49:22 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:49:22 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5957 elements 14:49:22 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5957 elements 14:49:22 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:49:22 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-23 15:00:00 (before) 2024-04-23 18:00:00 (after) 14:49:22 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-23 15:00:00) in space (linearNDFast) 14:49:22 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:49:22 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-23 18:00:00) in space (linearNDFast) 14:49:22 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:49:22 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-23 15:00:00, weight 0.43) and after (2024-04-23 18:00:00, weight 0.57) in time 14:49:22 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:49:22 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:49:22 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:49:22 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:49:22 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:49: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 14:49:22 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:49:22 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5957 elements 14:49: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 5957 elements 14:49:22 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:49:22 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-23 15:00:00 (before) 2024-04-23 18:00:00 (after) 14:49:22 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-23 15:00:00) in space (linearNDFast) 14:49:22 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:49:22 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-23 18:00:00) in space (linearNDFast) 14:49:22 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:49:22 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-23 15:00:00, weight 0.43) and after (2024-04-23 18:00:00, weight 0.57) in time 14:49:22 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:49:22 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:49:22 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:49:22 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:49: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'] 14:49:22 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:49:22 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:49:22 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:49:22 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:49:22 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.257998 (min) 0.275626 (max) 14:49:22 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.307236 (min) 0.212747 (max) 14:49:22 DEBUG opendrift.models.basemodel.environment:905: x_wind: -5.98167 (min) 0.0144482 (max) 14:49:22 DEBUG opendrift.models.basemodel.environment:905: y_wind: 3.16975 (min) 12.5269 (max) 14:49:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:49:22 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:49:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:49:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:49:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:49:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:49:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:49:22 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:49:22 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:49:22 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:49:22 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:49:22 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:49:22 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:49:22 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:49:22 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max) 14:49:22 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:49:22 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:49:22 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.432976, mean: 1.931535, max: 3.944223 14:49:22 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:49:22 DEBUG opendrift.models.physics_methods:1058: min: 3.584772, mean: 7.280764, max: 10.819578 14:49:22 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 3.584772, mean: 7.280764, max: 10.819578 14:49:22 DEBUG opendrift.models.basemodel:1667: 28 elements scheduled for deactivation (stranded) 14:49:22 DEBUG opendrift.models.basemodel:1669: (z: -18.196345 to -0.478103) 14:49:22 DEBUG opendrift.models.basemodel:1687: Removed 28 elements. 14:49:22 DEBUG opendrift.models.basemodel:1690: Removed 28 values from environment. 14:49:22 DEBUG opendrift.models.basemodel:1695: remove items from profile for z 14:49:22 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_temperature 14:49:22 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_salinity 14:49:22 DEBUG opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity 14:49:22 DEBUG opendrift.models.basemodel:1699: Removed 28 values from environment_profiles. 14:49:22 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:49:22 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:49:22 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:49:22 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:49:22 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:49:22 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:49:22 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:49:22 DEBUG opendrift.models.physics_methods:1058: min: 3.584772, mean: 7.273862, max: 10.819578 14:49:22 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:49:22 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.008059, dN_50: 0.000632 14:49:22 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:49:22 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.05785520926534845 14:49:22 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:49:22 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:49:22 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:49:22 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 122 surface elements 14:49:22 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 124 surface elements 14:49:22 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 123 surface elements 14:49:22 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 122 surface elements 14:49:22 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 123 surface elements 14:49:22 DEBUG opendrift.models.physics_methods:912: Advecting 138 of 5929 elements above 0.100m with wind-sheared ocean current (0.011869 m/s - 0.376531 m/s) 14:49:22 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:49:22 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0013153709356290228 and 0.4283887656406834 m/s 14:49:22 DEBUG opendrift.models.basemodel:2097: 5929 active elements (71 deactivated) 14:49:22 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:49:22 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:49:22 INFO opendrift.models.basemodel:2011: 2024-04-23 17:42:41.057477 - step 52 of 120 - 5929 active elements (71 deactivated) 14:49:22 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:49:22 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:49:22 DEBUG opendrift.models.basemodel:2030: 34.87890596442729 <- latitude -> 35.675723071135785 14:49:22 DEBUG opendrift.models.basemodel:2035: 23.087982634702172 <- longitude -> 23.55959607760401 14:49:22 DEBUG opendrift.models.basemodel:2040: -109.15004952694916 <- z -> 0.0 14:49:22 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:49:22 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:49:22 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:49:22 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:49:22 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:49:22 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:49:22 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5929 elements 14:49:22 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5929 elements 14:49:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:49:22 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:49:22 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:49:22 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:49:22 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:49:22 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:49:22 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:49:22 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:49:22 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5929 elements 14:49:22 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5929 elements 14:49:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:49:22 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:49:22 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:49:22 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:49:22 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:49:22 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:49:22 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:49:22 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:49:22 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:49:22 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5929 elements 14:49:22 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5929 elements 14:49:22 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:49:22 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-23 15:00:00 (before) 2024-04-23 18:00:00 (after) 14:49:22 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-23 15:00:00) in space (linearNDFast) 14:49:22 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:49:22 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-23 18:00:00) in space (linearNDFast) 14:49:22 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:49:22 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-23 15:00:00, weight 0.10) and after (2024-04-23 18:00:00, weight 0.90) in time 14:49:22 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:49:22 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:49:22 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:49:22 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:49:22 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:49: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 14:49:22 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:49:22 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5929 elements 14:49: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 5929 elements 14:49:22 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:49:22 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-23 15:00:00 (before) 2024-04-23 18:00:00 (after) 14:49:22 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-23 15:00:00) in space (linearNDFast) 14:49:22 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:49:22 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-23 18:00:00) in space (linearNDFast) 14:49:22 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:49:22 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-23 15:00:00, weight 0.10) and after (2024-04-23 18:00:00, weight 0.90) in time 14:49:22 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:49:22 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:49:22 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:49:22 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:49: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'] 14:49:22 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:49:22 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:49:22 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:49:22 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:49:22 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.263155 (min) 0.208349 (max) 14:49:22 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.314432 (min) 0.0831399 (max) 14:49:22 DEBUG opendrift.models.basemodel.environment:905: x_wind: -2.26893 (min) 2.90296 (max) 14:49:22 DEBUG opendrift.models.basemodel.environment:905: y_wind: 1.81236 (min) 11.3038 (max) 14:49:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:49:22 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:49:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:49:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:49:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:49:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:49:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:49:22 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:49:22 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:49:22 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:49:22 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:49:22 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:49:22 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:49:22 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:49:22 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max) 14:49:22 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:49:22 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:49:22 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.091989, mean: 1.199229, max: 3.179040 14:49:22 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:49:22 DEBUG opendrift.models.physics_methods:1058: min: 1.652328, mean: 5.258349, max: 9.713542 14:49:22 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.652328, mean: 5.258349, max: 9.713542 14:49:22 DEBUG opendrift.models.basemodel:1667: 19 elements scheduled for deactivation (stranded) 14:49:22 DEBUG opendrift.models.basemodel:1669: (z: -19.646330 to -0.414377) 14:49:22 DEBUG opendrift.models.basemodel:1687: Removed 19 elements. 14:49:22 DEBUG opendrift.models.basemodel:1690: Removed 19 values from environment. 14:49:22 DEBUG opendrift.models.basemodel:1695: remove items from profile for z 14:49:22 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_temperature 14:49:22 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_salinity 14:49:22 DEBUG opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity 14:49:22 DEBUG opendrift.models.basemodel:1699: Removed 19 values from environment_profiles. 14:49:22 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:49:22 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:49:22 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:49:22 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:49:22 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:49:22 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:49:22 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:49:22 DEBUG opendrift.models.physics_methods:1058: min: 1.652328, mean: 5.250769, max: 9.713542 14:49:22 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:49:22 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.009887, dN_50: 0.000776 14:49:22 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:49:22 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.04663207034255072 14:49:22 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:49:22 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:49:22 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:49:22 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 126 surface elements 14:49:22 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 129 surface elements 14:49:22 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 133 surface elements 14:49:22 DEBUG opendrift.models.openoil.openoil:1036: Entraining 2 of 134 surface elements 14:49:22 DEBUG opendrift.models.physics_methods:912: Advecting 148 of 5910 elements above 0.100m with wind-sheared ocean current (0.016072 m/s - 0.341037 m/s) 14:49:22 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:49:22 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0013718332300813516 and 0.5239285717286476 m/s 14:49:22 DEBUG opendrift.models.basemodel:2097: 5910 active elements (90 deactivated) 14:49:22 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:49:22 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:49:22 INFO opendrift.models.basemodel:2011: 2024-04-23 18:42:41.057477 - step 53 of 120 - 5910 active elements (90 deactivated) 14:49:22 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:49:22 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:49:22 DEBUG opendrift.models.basemodel:2030: 34.873506913639396 <- latitude -> 35.684321756258484 14:49:22 DEBUG opendrift.models.basemodel:2035: 23.093426049101673 <- longitude -> 23.558912618126556 14:49:22 DEBUG opendrift.models.basemodel:2040: -108.32181531738982 <- z -> 0.0 14:49:22 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:49:22 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:49:22 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:49:22 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:49:22 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:49:22 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:49:22 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5910 elements 14:49:22 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5910 elements 14:49:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:49:22 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:49:22 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:49:22 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:49:22 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:49:22 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:49:22 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:49:22 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:49:22 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5910 elements 14:49:22 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5910 elements 14:49:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:49:22 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:49:22 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:49:22 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:49:22 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:49:22 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:49:22 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:49:22 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:49:22 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:49:22 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5910 elements 14:49:22 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5910 elements 14:49:22 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:49:22 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-23 18:00:00 (before) 2024-04-23 21:00:00 (after) 14:49:22 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity 14:49:29 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_sea_water_velocity to retrieve y_sea_water_velocity 14:49:34 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:49:34 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values 14:49:34 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values 14:49:34 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity'] 14:49:34 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 14x29x22) for time after (2024-04-23 21:00:00) 14:49:34 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-23 18:00:00) in space (linearNDFast) 14:49:34 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:49:34 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-23 21:00:00) in space (linearNDFast) 14:49:34 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:49:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1211 elements, expanding data 1 14:49:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1211 elements, expanding data 1 14:49:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1211 elements, expanding data 1 14:49:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1211 elements, expanding data 1 14:49:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1211 elements, expanding data 1 14:49:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1211 elements, expanding data 1 14:49:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1211 elements, expanding data 1 14:49:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1211 elements, expanding data 1 14:49:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1211 elements, expanding data 1 14:49:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1211 elements, expanding data 1 14:49:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1211 elements, expanding data 1 14:49:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1211 elements, expanding data 1 14:49:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1211 elements, expanding data 1 14:49:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1211 elements, expanding data 1 14:49:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1211 elements, expanding data 1 14:49:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1211 elements, expanding data 1 14:49:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1211 elements, expanding data 1 14:49:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1211 elements, expanding data 1 14:49:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1211 elements, expanding data 1 14:49:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1211 elements, expanding data 1 14:49:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1211 elements, expanding data 1 14:49:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1211 elements, expanding data 1 14:49:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1211 elements, expanding data 1 14:49:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1211 elements, expanding data 1 14:49:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1211 elements, expanding data 1 14:49:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1211 elements, expanding data 1 14:49:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1211 elements, expanding data 1 14:49:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1211 elements, expanding data 1 14:49:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1211 elements, expanding data 1 14:49:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1211 elements, expanding data 1 14:49:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1211 elements, expanding data 1 14:49:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1211 elements, expanding data 1 14:49:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1211 elements, expanding data 1 14:49:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1211 elements, expanding data 1 14:49:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1211 elements, expanding data 1 14:49:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1211 elements, expanding data 1 14:49:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1211 elements, expanding data 1 14:49:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1211 elements, expanding data 1 14:49:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1211 elements, expanding data 1 14:49:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1211 elements, expanding data 1 14:49:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1211 elements, expanding data 1 14:49:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1211 elements, expanding data 1 14:49:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1211 elements, expanding data 1 14:49:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1211 elements, expanding data 1 14:49:34 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-23 18:00:00, weight 0.76) and after (2024-04-23 21:00:00, weight 0.24) in time 14:49:34 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:49:34 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:49:34 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:49:34 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:49:34 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:49: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 14:49:34 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:49:34 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5910 elements 14:49: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 5910 elements 14:49:34 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:49:34 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-23 18:00:00 (before) 2024-04-23 21:00:00 (after) 14:49:34 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_wind to retrieve x_wind 14:49:35 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_wind to retrieve y_wind 14:49:35 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:49:35 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values 14:49:35 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values 14:49:35 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 7x8x1) for time after (2024-04-23 21:00:00) 14:49:35 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-23 18:00:00) in space (linearNDFast) 14:49:35 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:49:35 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-23 21:00:00) in space (linearNDFast) 14:49:35 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:49:35 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-23 18:00:00, weight 0.76) and after (2024-04-23 21:00:00, weight 0.24) in time 14:49:35 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:49:35 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:49:35 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:49:35 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:49: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'] 14:49:35 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:49:35 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:49:35 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:49:35 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:49:35 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.255991 (min) 0.156488 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.292455 (min) 0.0927334 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:905: x_wind: 0.0509271 (min) 4.56417 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:905: y_wind: 0.40888 (min) 10.0169 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:49:35 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.042853, mean: 0.811929, max: 2.474674 14:49:35 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:49:35 DEBUG opendrift.models.physics_methods:1058: min: 1.127763, mean: 4.142136, max: 8.570152 14:49:35 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.127763, mean: 4.142136, max: 8.570152 14:49:35 DEBUG opendrift.models.basemodel:1667: 24 elements scheduled for deactivation (stranded) 14:49:35 DEBUG opendrift.models.basemodel:1669: (z: -18.581497 to -1.101326) 14:49:35 DEBUG opendrift.models.basemodel:1687: Removed 24 elements. 14:49:35 DEBUG opendrift.models.basemodel:1690: Removed 24 values from environment. 14:49:35 DEBUG opendrift.models.basemodel:1695: remove items from profile for z 14:49:35 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_temperature 14:49:35 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_salinity 14:49:35 DEBUG opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity 14:49:35 DEBUG opendrift.models.basemodel:1699: Removed 24 values from environment_profiles. 14:49:35 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:49:35 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:49:35 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:49:35 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:49:35 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:49:35 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:49:35 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:49:35 DEBUG opendrift.models.physics_methods:1058: min: 1.127763, mean: 4.133014, max: 8.570152 14:49:35 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:49:35 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.012188, dN_50: 0.000957 14:49:35 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:49:35 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.036300926064335194 14:49:35 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:49:35 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:49:35 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:49:35 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 147 surface elements 14:49:35 DEBUG opendrift.models.physics_methods:912: Advecting 152 of 5886 elements above 0.100m with wind-sheared ocean current (0.032445 m/s - 0.300893 m/s) 14:49:35 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:49:35 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0018922392355413564 and 0.4630251685439222 m/s 14:49:35 DEBUG opendrift.models.basemodel:2097: 5886 active elements (114 deactivated) 14:49:35 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:49:35 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:49:35 INFO opendrift.models.basemodel:2011: 2024-04-23 19:42:41.057477 - step 54 of 120 - 5886 active elements (114 deactivated) 14:49:35 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:49:35 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:49:35 DEBUG opendrift.models.basemodel:2030: 34.87864735107052 <- latitude -> 35.69370495001767 14:49:35 DEBUG opendrift.models.basemodel:2035: 23.09939285965638 <- longitude -> 23.56015369111791 14:49:35 DEBUG opendrift.models.basemodel:2040: -107.9030332547381 <- z -> 0.0 14:49:35 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:49:35 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:49:35 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:49:35 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:49:35 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:49:35 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:49:35 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5886 elements 14:49:35 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5886 elements 14:49:35 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:49:35 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:49:35 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:49:35 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:49:35 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:49:35 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:49:35 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:49:35 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:49:35 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5886 elements 14:49:35 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5886 elements 14:49:35 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:49:35 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:49:35 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:49:35 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:49:35 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:49:35 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:49:35 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:49:35 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:49:35 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:49:35 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5886 elements 14:49:35 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5886 elements 14:49:35 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:49:35 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-23 18:00:00 (before) 2024-04-23 21:00:00 (after) 14:49:35 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-23 18:00:00) in space (linearNDFast) 14:49:35 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:49:35 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-23 21:00:00) in space (linearNDFast) 14:49:35 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:49:35 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-23 18:00:00, weight 0.43) and after (2024-04-23 21:00:00, weight 0.57) in time 14:49:35 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:49:35 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:49:35 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:49:35 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:49:35 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:49: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 14:49:35 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:49:35 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5886 elements 14:49: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 5886 elements 14:49:35 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:49:35 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-23 18:00:00 (before) 2024-04-23 21:00:00 (after) 14:49:35 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-23 18:00:00) in space (linearNDFast) 14:49:35 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:49:35 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-23 21:00:00) in space (linearNDFast) 14:49:35 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:49:35 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-23 18:00:00, weight 0.43) and after (2024-04-23 21:00:00, weight 0.57) in time 14:49:35 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:49:35 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:49:35 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:49:35 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:49: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'] 14:49:35 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:49:35 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:49:35 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:49:35 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:49:35 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.25047 (min) 0.110799 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.261122 (min) 0.100981 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:905: x_wind: 1.84244 (min) 5.77489 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:905: y_wind: -0.971256 (min) 8.68149 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:49:35 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.083507, mean: 0.674720, max: 2.019472 14:49:35 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:49:35 DEBUG opendrift.models.physics_methods:1058: min: 1.574309, mean: 4.115182, max: 7.741916 14:49:35 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.574309, mean: 4.115182, max: 7.741916 14:49:35 DEBUG opendrift.models.basemodel:1667: 13 elements scheduled for deactivation (stranded) 14:49:35 DEBUG opendrift.models.basemodel:1669: (z: -15.809336 to -0.195423) 14:49:35 DEBUG opendrift.models.basemodel:1687: Removed 13 elements. 14:49:35 DEBUG opendrift.models.basemodel:1690: Removed 13 values from environment. 14:49:35 DEBUG opendrift.models.basemodel:1695: remove items from profile for z 14:49:35 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_temperature 14:49:35 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_salinity 14:49:35 DEBUG opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity 14:49:35 DEBUG opendrift.models.basemodel:1699: Removed 13 values from environment_profiles. 14:49:35 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:49:35 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:49:35 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:49:35 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:49:35 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:49:35 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:49:35 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:49:35 DEBUG opendrift.models.physics_methods:1058: min: 1.574309, mean: 4.111907, max: 7.741916 14:49:35 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:49:35 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.012584, dN_50: 0.000988 14:49:35 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:49:35 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.02962435298933018 14:49:35 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:49:35 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:49:35 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:49:35 DEBUG opendrift.models.physics_methods:912: Advecting 162 of 5873 elements above 0.100m with wind-sheared ocean current (0.136418 m/s - 0.271814 m/s) 14:49:35 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:49:35 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0011505763746729872 and 0.4158863361288538 m/s 14:49:35 DEBUG opendrift.models.basemodel:2097: 5873 active elements (127 deactivated) 14:49:35 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:49:35 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:49:35 INFO opendrift.models.basemodel:2011: 2024-04-23 20:42:41.057477 - step 55 of 120 - 5873 active elements (127 deactivated) 14:49:35 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:49:35 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:49:35 DEBUG opendrift.models.basemodel:2030: 34.878555064942844 <- latitude -> 35.691212111266694 14:49:35 DEBUG opendrift.models.basemodel:2035: 23.1059837810151 <- longitude -> 23.5643091157101 14:49:35 DEBUG opendrift.models.basemodel:2040: -106.43256624947001 <- z -> 0.0 14:49:35 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:49:35 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:49:35 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:49:35 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:49:35 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:49:35 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:49:35 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5873 elements 14:49:35 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5873 elements 14:49:35 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:49:35 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:49:35 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:49:35 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:49:35 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:49:35 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:49:35 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:49:35 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:49:35 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5873 elements 14:49:35 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5873 elements 14:49:35 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:49:35 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:49:35 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:49:35 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:49:35 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:49:35 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:49:35 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:49:35 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:49:35 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:49:35 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5873 elements 14:49:35 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5873 elements 14:49:35 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:49:35 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-23 18:00:00 (before) 2024-04-23 21:00:00 (after) 14:49:35 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-23 18:00:00) in space (linearNDFast) 14:49:35 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:49:35 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-23 21:00:00) in space (linearNDFast) 14:49:35 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:49:35 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-23 18:00:00, weight 0.10) and after (2024-04-23 21:00:00, weight 0.90) in time 14:49:35 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:49:35 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:49:35 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:49:35 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:49:35 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:49: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 14:49:35 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:49:35 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5873 elements 14:49: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 5873 elements 14:49:35 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:49:35 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-23 18:00:00 (before) 2024-04-23 21:00:00 (after) 14:49:35 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-23 18:00:00) in space (linearNDFast) 14:49:35 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:49:35 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-23 21:00:00) in space (linearNDFast) 14:49:35 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:49:35 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-23 18:00:00, weight 0.10) and after (2024-04-23 21:00:00, weight 0.90) in time 14:49:35 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:49:35 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:49:35 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:49:35 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:49: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'] 14:49:35 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:49:35 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:49:35 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:49:35 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:49:35 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.264821 (min) 0.0694647 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.242483 (min) 0.116909 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:905: x_wind: 3.64256 (min) 6.91798 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:905: y_wind: -2.36733 (min) 7.42554 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:49:35 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:49:35 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.363730, mean: 0.809147, max: 1.896096 14:49:35 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:49:35 DEBUG opendrift.models.physics_methods:1058: min: 3.285632, mean: 4.820864, max: 7.501701 14:49:35 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 3.285632, mean: 4.820864, max: 7.501701 14:49:35 DEBUG opendrift.models.basemodel:1667: 15 elements scheduled for deactivation (stranded) 14:49:35 DEBUG opendrift.models.basemodel:1669: (z: -18.971788 to -2.117239) 14:49:35 DEBUG opendrift.models.basemodel:1687: Removed 15 elements. 14:49:35 DEBUG opendrift.models.basemodel:1690: Removed 15 values from environment. 14:49:35 DEBUG opendrift.models.basemodel:1695: remove items from profile for z 14:49:35 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_temperature 14:49:35 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_salinity 14:49:35 DEBUG opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity 14:49:35 DEBUG opendrift.models.basemodel:1699: Removed 15 values from environment_profiles. 14:49:35 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:49:35 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:49:35 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:49:35 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:49:35 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:49:35 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:49:35 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:49:35 DEBUG opendrift.models.physics_methods:1058: min: 3.285632, mean: 4.819697, max: 7.501701 14:49:35 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:49:35 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.012628, dN_50: 0.000991 14:49:35 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:49:35 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.02781477126239793 14:49:35 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:49:35 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:49:35 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:49:35 DEBUG opendrift.models.physics_methods:912: Advecting 171 of 5858 elements above 0.100m with wind-sheared ocean current (0.021567 m/s - 0.263381 m/s) 14:49:35 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:49:35 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0015162350993735238 and 0.42043744480641637 m/s 14:49:35 DEBUG opendrift.models.basemodel:2097: 5858 active elements (142 deactivated) 14:49:35 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:49:35 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:49:35 INFO opendrift.models.basemodel:2011: 2024-04-23 21:42:41.057477 - step 56 of 120 - 5858 active elements (142 deactivated) 14:49:35 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:49:35 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:49:35 DEBUG opendrift.models.basemodel:2030: 34.880520446140416 <- latitude -> 35.688799069348555 14:49:35 DEBUG opendrift.models.basemodel:2035: 23.112868438544947 <- longitude -> 23.569279280368487 14:49:35 DEBUG opendrift.models.basemodel:2040: -106.01665961699375 <- z -> 0.0 14:49:35 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:49:35 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:49:35 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:49:35 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:49:35 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:49:35 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:49:35 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5858 elements 14:49:35 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5858 elements 14:49:35 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:49:35 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:49:35 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:49:35 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:49:35 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:49:35 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:49:35 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:49:35 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:49:35 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5858 elements 14:49:35 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5858 elements 14:49:35 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:49:35 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:49:35 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:49:35 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:49:35 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:49:35 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:49:35 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:49:35 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:49:35 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:49:35 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5858 elements 14:49:35 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5858 elements 14:49:35 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:49:35 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-23 21:00:00 (before) 2024-04-24 00:00:00 (after) 14:49:35 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity 14:49:44 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_sea_water_velocity to retrieve y_sea_water_velocity 14:49:49 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:49:49 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values 14:49:49 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values 14:49:49 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity'] 14:49:49 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 13x29x22) for time after (2024-04-24 00:00:00) 14:49:49 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-23 21:00:00) in space (linearNDFast) 14:49:49 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:49:49 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-24 00:00:00) in space (linearNDFast) 14:49:49 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:49:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1427 elements, expanding data 1 14:49:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1427 elements, expanding data 1 14:49:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1427 elements, expanding data 1 14:49:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1427 elements, expanding data 1 14:49:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1427 elements, expanding data 1 14:49:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1427 elements, expanding data 1 14:49:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1427 elements, expanding data 1 14:49:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1427 elements, expanding data 1 14:49:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1427 elements, expanding data 1 14:49:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1427 elements, expanding data 1 14:49:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1427 elements, expanding data 1 14:49:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1427 elements, expanding data 1 14:49:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1427 elements, expanding data 1 14:49:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1427 elements, expanding data 1 14:49:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1427 elements, expanding data 1 14:49:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1427 elements, expanding data 1 14:49:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1427 elements, expanding data 1 14:49:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1427 elements, expanding data 1 14:49:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1427 elements, expanding data 1 14:49:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1427 elements, expanding data 1 14:49:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1427 elements, expanding data 1 14:49:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1427 elements, expanding data 1 14:49:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1427 elements, expanding data 1 14:49:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1427 elements, expanding data 1 14:49:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1427 elements, expanding data 1 14:49:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1427 elements, expanding data 1 14:49:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1427 elements, expanding data 1 14:49:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1427 elements, expanding data 1 14:49:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1427 elements, expanding data 1 14:49:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1427 elements, expanding data 1 14:49:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1427 elements, expanding data 1 14:49:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1427 elements, expanding data 1 14:49:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1427 elements, expanding data 1 14:49:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1427 elements, expanding data 1 14:49:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1427 elements, expanding data 1 14:49:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1427 elements, expanding data 1 14:49:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1427 elements, expanding data 1 14:49:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1427 elements, expanding data 1 14:49:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1427 elements, expanding data 1 14:49:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1427 elements, expanding data 1 14:49:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1427 elements, expanding data 1 14:49:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1427 elements, expanding data 1 14:49:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1427 elements, expanding data 1 14:49:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1427 elements, expanding data 1 14:49:49 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-23 21:00:00, weight 0.76) and after (2024-04-24 00:00:00, weight 0.24) in time 14:49:49 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:49:49 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:49:49 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:49:49 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:49:49 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:49: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 14:49:49 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:49:49 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5858 elements 14:49: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 5858 elements 14:49:49 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:49:49 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-23 21:00:00 (before) 2024-04-24 00:00:00 (after) 14:49:49 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_wind to retrieve x_wind 14:49:49 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_wind to retrieve y_wind 14:49:50 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:49:50 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values 14:49:50 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values 14:49:50 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 7x8x1) for time after (2024-04-24 00:00:00) 14:49:50 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-23 21:00:00) in space (linearNDFast) 14:49:50 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:49:50 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-24 00:00:00) in space (linearNDFast) 14:49:50 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:49:50 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-23 21:00:00, weight 0.76) and after (2024-04-24 00:00:00, weight 0.24) in time 14:49:50 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:49:50 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:49:50 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:49:50 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:49:50 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'] 14:49:50 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:49:50 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:49:50 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:49:50 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:49:50 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.318141 (min) 0.0576563 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.201473 (min) 0.134517 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:905: x_wind: 4.4386 (min) 7.60633 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:905: y_wind: -3.12389 (min) 6.11119 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:49:50 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.568297, mean: 0.899352, max: 1.632530 14:49:50 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:49:50 DEBUG opendrift.models.physics_methods:1058: min: 4.106931, mean: 5.153254, max: 6.960816 14:49:50 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.106931, mean: 5.153254, max: 6.960816 14:49:50 DEBUG opendrift.models.basemodel:1667: 9 elements scheduled for deactivation (stranded) 14:49:50 DEBUG opendrift.models.basemodel:1669: (z: -18.222450 to 0.000000) 14:49:50 DEBUG opendrift.models.basemodel:1687: Removed 9 elements. 14:49:50 DEBUG opendrift.models.basemodel:1690: Removed 9 values from environment. 14:49:50 DEBUG opendrift.models.basemodel:1695: remove items from profile for z 14:49:50 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_temperature 14:49:50 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_salinity 14:49:50 DEBUG opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity 14:49:50 DEBUG opendrift.models.basemodel:1699: Removed 9 values from environment_profiles. 14:49:50 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:49:50 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:49:50 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:49:50 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:49:50 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:49:50 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:49:50 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:49:50 DEBUG opendrift.models.physics_methods:1058: min: 4.106931, mean: 5.153390, max: 6.960816 14:49:50 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:49:50 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.013239, dN_50: 0.001039 14:49:50 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:49:50 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.023948964611792033 14:49:50 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:49:50 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:49:50 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:49:50 DEBUG opendrift.models.physics_methods:912: Advecting 170 of 5849 elements above 0.100m with wind-sheared ocean current (0.000896 m/s - 0.244390 m/s) 14:49:50 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:49:50 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.004282705061512055 and 0.4727658397612213 m/s 14:49:50 DEBUG opendrift.models.basemodel:2097: 5849 active elements (151 deactivated) 14:49:50 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:49:50 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:49:50 INFO opendrift.models.basemodel:2011: 2024-04-23 22:42:41.057477 - step 57 of 120 - 5849 active elements (151 deactivated) 14:49:50 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:49:50 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:49:50 DEBUG opendrift.models.basemodel:2030: 34.88142541316569 <- latitude -> 35.694993925230115 14:49:50 DEBUG opendrift.models.basemodel:2035: 23.130017202956953 <- longitude -> 23.568588190717108 14:49:50 DEBUG opendrift.models.basemodel:2040: -105.27861724092625 <- z -> 0.0 14:49:50 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:49:50 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:49:50 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:49:50 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:49:50 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:49:50 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:49:50 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5849 elements 14:49:50 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5849 elements 14:49:50 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:49:50 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:49:50 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:49:50 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:49:50 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:49:50 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:49:50 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:49:50 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:49:50 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5849 elements 14:49:50 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5849 elements 14:49:50 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:49:50 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:49:50 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:49:50 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:49:50 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:49:50 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:49:50 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:49:50 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:49:50 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:49:50 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5849 elements 14:49:50 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5849 elements 14:49:50 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:49:50 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-23 21:00:00 (before) 2024-04-24 00:00:00 (after) 14:49:50 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-23 21:00:00) in space (linearNDFast) 14:49:50 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:49:50 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-24 00:00:00) in space (linearNDFast) 14:49:50 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:49:50 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-23 21:00:00, weight 0.43) and after (2024-04-24 00:00:00, weight 0.57) in time 14:49:50 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:49:50 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:49:50 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:49:50 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:49:50 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:49:50 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd 14:49:50 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:49:50 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5849 elements 14:49:50 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 14:49:50 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:49:50 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-23 21:00:00 (before) 2024-04-24 00:00:00 (after) 14:49:50 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-23 21:00:00) in space (linearNDFast) 14:49:50 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:49:50 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-24 00:00:00) in space (linearNDFast) 14:49:50 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:49:50 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-23 21:00:00, weight 0.43) and after (2024-04-24 00:00:00, weight 0.57) in time 14:49:50 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:49:50 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:49:50 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:49:50 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:49:50 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'] 14:49:50 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:49:50 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:49:50 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:49:50 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:49:50 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.376402 (min) 0.0581831 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.158726 (min) 0.143143 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:905: x_wind: 4.92149 (min) 8.09677 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:905: y_wind: -3.64943 (min) 4.86518 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:49:50 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.621631, mean: 0.943950, max: 1.623103 14:49:50 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:49:50 DEBUG opendrift.models.physics_methods:1058: min: 4.295322, mean: 5.285799, max: 6.940689 14:49:50 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.295322, mean: 5.285799, max: 6.940689 14:49:50 DEBUG opendrift.models.basemodel:1667: 11 elements scheduled for deactivation (stranded) 14:49:50 DEBUG opendrift.models.basemodel:1669: (z: -17.218183 to 0.000000) 14:49:50 DEBUG opendrift.models.basemodel:1687: Removed 11 elements. 14:49:50 DEBUG opendrift.models.basemodel:1690: Removed 11 values from environment. 14:49:50 DEBUG opendrift.models.basemodel:1695: remove items from profile for z 14:49:50 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_temperature 14:49:50 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_salinity 14:49:50 DEBUG opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity 14:49:50 DEBUG opendrift.models.basemodel:1699: Removed 11 values from environment_profiles. 14:49:50 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:49:50 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:49:50 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:49:50 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:49:50 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:49:50 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:49:50 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:49:50 DEBUG opendrift.models.physics_methods:1058: min: 4.295322, mean: 5.286595, max: 6.940689 14:49:50 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:49:50 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.014119, dN_50: 0.001108 14:49:50 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:49:50 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.023810695288111194 14:49:50 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:49:50 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:49:50 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:49:50 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 161 surface elements 14:49:50 DEBUG opendrift.models.physics_methods:912: Advecting 168 of 5838 elements above 0.100m with wind-sheared ocean current (0.058238 m/s - 0.243684 m/s) 14:49:50 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:49:50 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0045855539554155705 and 0.4272821117596604 m/s 14:49:50 DEBUG opendrift.models.basemodel:2097: 5838 active elements (162 deactivated) 14:49:50 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:49:50 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:49:50 INFO opendrift.models.basemodel:2011: 2024-04-23 23:42:41.057477 - step 58 of 120 - 5838 active elements (162 deactivated) 14:49:50 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:49:50 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:49:50 DEBUG opendrift.models.basemodel:2030: 34.88477058897897 <- latitude -> 35.699636411114724 14:49:50 DEBUG opendrift.models.basemodel:2035: 23.140454073767376 <- longitude -> 23.571618413598543 14:49:50 DEBUG opendrift.models.basemodel:2040: -103.79871790010365 <- z -> 0.0 14:49:50 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:49:50 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:49:50 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:49:50 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:49:50 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:49:50 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:49:50 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5838 elements 14:49:50 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5838 elements 14:49:50 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:49:50 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:49:50 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:49:50 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:49:50 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:49:50 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:49:50 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:49:50 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:49:50 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5838 elements 14:49:50 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5838 elements 14:49:50 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:49:50 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:49:50 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:49:50 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:49:50 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:49:50 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:49:50 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:49:50 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:49:50 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:49:50 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5838 elements 14:49:50 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5838 elements 14:49:50 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:49:50 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-23 21:00:00 (before) 2024-04-24 00:00:00 (after) 14:49:50 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-23 21:00:00) in space (linearNDFast) 14:49:50 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:49:50 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-24 00:00:00) in space (linearNDFast) 14:49:50 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:49:50 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-23 21:00:00, weight 0.10) and after (2024-04-24 00:00:00, weight 0.90) in time 14:49:50 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:49:50 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:49:50 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:49:50 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:49:50 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:49:50 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd 14:49:50 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:49:50 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5838 elements 14:49:50 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 5838 elements 14:49:50 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:49:50 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-23 21:00:00 (before) 2024-04-24 00:00:00 (after) 14:49:50 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-23 21:00:00) in space (linearNDFast) 14:49:50 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:49:50 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-24 00:00:00) in space (linearNDFast) 14:49:50 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:49:50 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-23 21:00:00, weight 0.10) and after (2024-04-24 00:00:00, weight 0.90) in time 14:49:50 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:49:50 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:49:50 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:49:50 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:49:50 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'] 14:49:50 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:49:50 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:49:50 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:49:50 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:49:50 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.379379 (min) 0.0681519 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.132722 (min) 0.151799 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:905: x_wind: 5.16648 (min) 8.58609 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:905: y_wind: -4.21443 (min) 3.61478 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:49:50 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:49:50 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.713483, mean: 1.037093, max: 1.818621 14:49:50 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:49:50 DEBUG opendrift.models.physics_methods:1058: min: 4.601733, mean: 5.520296, max: 7.346842 14:49:50 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.601733, mean: 5.520296, max: 7.346842 14:49:50 DEBUG opendrift.models.basemodel:1667: 3 elements scheduled for deactivation (stranded) 14:49:50 DEBUG opendrift.models.basemodel:1669: (z: -12.238975 to 0.000000) 14:49:50 DEBUG opendrift.models.basemodel:1687: Removed 3 elements. 14:49:50 DEBUG opendrift.models.basemodel:1690: Removed 3 values from environment. 14:49:50 DEBUG opendrift.models.basemodel:1695: remove items from profile for z 14:49:50 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_temperature 14:49:50 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_salinity 14:49:50 DEBUG opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity 14:49:50 DEBUG opendrift.models.basemodel:1699: Removed 3 values from environment_profiles. 14:49:50 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:49:50 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:49:50 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:49:50 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:49:50 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:49:50 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:49:50 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:49:50 DEBUG opendrift.models.physics_methods:1058: min: 4.601734, mean: 5.520700, max: 7.346842 14:49:50 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:49:50 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.014778, dN_50: 0.001160 14:49:50 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:49:50 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.026678421545073706 14:49:50 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:49:50 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:49:50 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:49:50 DEBUG opendrift.models.physics_methods:912: Advecting 181 of 5835 elements above 0.100m with wind-sheared ocean current (0.032071 m/s - 0.257944 m/s) 14:49:50 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:49:50 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0003945649941396004 and 0.4305766572674648 m/s 14:49:50 DEBUG opendrift.models.basemodel:2097: 5835 active elements (165 deactivated) 14:49:50 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:49:50 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:49:50 INFO opendrift.models.basemodel:2011: 2024-04-24 00:42:41.057477 - step 59 of 120 - 5835 active elements (165 deactivated) 14:49:50 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:49:50 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:49:50 DEBUG opendrift.models.basemodel:2030: 34.886420177087295 <- latitude -> 35.7011289717966 14:49:50 DEBUG opendrift.models.basemodel:2035: 23.14858905520465 <- longitude -> 23.566311976729352 14:49:50 DEBUG opendrift.models.basemodel:2040: -103.48185668962488 <- z -> 0.0 14:49:50 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:49:50 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:49:50 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:49:50 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:49:50 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:49:50 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:49:50 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5835 elements 14:49:50 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5835 elements 14:49:50 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:49:50 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:49:50 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:49:50 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:49:50 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:49:50 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:49:50 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:49:50 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:49:50 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5835 elements 14:49:50 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5835 elements 14:49:50 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:49:50 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:49:50 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:49:50 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:49:50 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:49:50 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:49:50 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:49:50 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:49:50 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:49:50 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5835 elements 14:49:50 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5835 elements 14:49:50 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:49:50 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-24 00:00:00 (before) 2024-04-24 03:00:00 (after) 14:49:50 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity 14:49:55 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_sea_water_velocity to retrieve y_sea_water_velocity 14:50:00 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:50:00 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values 14:50:00 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values 14:50:00 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity'] 14:50:00 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 13x28x22) for time after (2024-04-24 03:00:00) 14:50:00 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-24 00:00:00) in space (linearNDFast) 14:50:00 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:50:00 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-24 03:00:00) in space (linearNDFast) 14:50:00 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:50:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1234 elements, expanding data 1 14:50:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1234 elements, expanding data 1 14:50:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1234 elements, expanding data 1 14:50:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1234 elements, expanding data 1 14:50:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1234 elements, expanding data 1 14:50:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1234 elements, expanding data 1 14:50:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1234 elements, expanding data 1 14:50:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1234 elements, expanding data 1 14:50:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1234 elements, expanding data 1 14:50:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1234 elements, expanding data 1 14:50:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1234 elements, expanding data 1 14:50:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1234 elements, expanding data 1 14:50:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1234 elements, expanding data 1 14:50:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1234 elements, expanding data 1 14:50:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1234 elements, expanding data 1 14:50:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1234 elements, expanding data 1 14:50:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1234 elements, expanding data 1 14:50:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1234 elements, expanding data 1 14:50:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1234 elements, expanding data 1 14:50:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1234 elements, expanding data 1 14:50:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1234 elements, expanding data 1 14:50:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1234 elements, expanding data 1 14:50:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1234 elements, expanding data 1 14:50:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1234 elements, expanding data 1 14:50:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1234 elements, expanding data 1 14:50:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1234 elements, expanding data 1 14:50:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1234 elements, expanding data 1 14:50:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1234 elements, expanding data 1 14:50:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1234 elements, expanding data 1 14:50:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1234 elements, expanding data 1 14:50:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1234 elements, expanding data 1 14:50:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1234 elements, expanding data 1 14:50:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1234 elements, expanding data 1 14:50:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1234 elements, expanding data 1 14:50:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1234 elements, expanding data 1 14:50:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1234 elements, expanding data 1 14:50:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1234 elements, expanding data 1 14:50:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1234 elements, expanding data 1 14:50:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1234 elements, expanding data 1 14:50:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1234 elements, expanding data 1 14:50:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1234 elements, expanding data 1 14:50:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1234 elements, expanding data 1 14:50:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1234 elements, expanding data 1 14:50:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1234 elements, expanding data 1 14:50:00 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-24 00:00:00, weight 0.76) and after (2024-04-24 03:00:00, weight 0.24) in time 14:50:00 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:50:00 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:50:00 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:50:00 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:50:00 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:50: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 14:50:00 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:50:00 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5835 elements 14:50: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 5835 elements 14:50:00 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:50:00 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-24 00:00:00 (before) 2024-04-24 03:00:00 (after) 14:50:00 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_wind to retrieve x_wind 14:50:00 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_wind to retrieve y_wind 14:50:00 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:50:00 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values 14:50:00 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values 14:50:00 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 7x8x1) for time after (2024-04-24 03:00:00) 14:50:00 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-24 00:00:00) in space (linearNDFast) 14:50:00 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:50:00 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-24 03:00:00) in space (linearNDFast) 14:50:00 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:50:00 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-24 00:00:00, weight 0.76) and after (2024-04-24 03:00:00, weight 0.24) in time 14:50:00 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:50:00 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:50:00 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:50:00 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:50: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'] 14:50:00 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:50:00 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:50:00 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:50:00 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:50:00 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.381638 (min) 0.106262 (max) 14:50:00 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.120821 (min) 0.132785 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:905: x_wind: 5.38283 (min) 8.79103 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:905: y_wind: -4.70105 (min) 2.38534 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:50:01 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.781897, mean: 1.181205, max: 1.925870 14:50:01 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:50:01 DEBUG opendrift.models.physics_methods:1058: min: 4.817306, mean: 5.872277, max: 7.560369 14:50:01 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.817306, mean: 5.872277, max: 7.560369 14:50:01 DEBUG opendrift.models.basemodel:1667: 1 elements scheduled for deactivation (stranded) 14:50:01 DEBUG opendrift.models.basemodel:1669: (z: 0.000000 to 0.000000) 14:50:01 DEBUG opendrift.models.basemodel:1687: Removed 1 elements. 14:50:01 DEBUG opendrift.models.basemodel:1690: Removed 1 values from environment. 14:50:01 DEBUG opendrift.models.basemodel:1695: remove items from profile for z 14:50:01 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_temperature 14:50:01 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_salinity 14:50:01 DEBUG opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity 14:50:01 DEBUG opendrift.models.basemodel:1699: Removed 1 values from environment_profiles. 14:50:01 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:50:01 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:50:01 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:50:01 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:50:01 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:50:01 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:50:01 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:50:01 DEBUG opendrift.models.physics_methods:1058: min: 4.817306, mean: 5.872451, max: 7.560369 14:50:01 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:50:01 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.015028, dN_50: 0.001179 14:50:01 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:50:01 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.02825146272444818 14:50:01 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:50:01 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:50:01 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:50:01 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 173 surface elements 14:50:01 DEBUG opendrift.models.physics_methods:912: Advecting 187 of 5834 elements above 0.100m with wind-sheared ocean current (0.001308 m/s - 0.265440 m/s) 14:50:01 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:50:01 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.001567187927345341 and 0.44648895569702063 m/s 14:50:01 DEBUG opendrift.models.basemodel:2097: 5834 active elements (166 deactivated) 14:50:01 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:50:01 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:50:01 INFO opendrift.models.basemodel:2011: 2024-04-24 01:42:41.057477 - step 60 of 120 - 5834 active elements (166 deactivated) 14:50:01 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:50:01 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:50:01 DEBUG opendrift.models.basemodel:2030: 34.88991068269619 <- latitude -> 35.70064037433397 14:50:01 DEBUG opendrift.models.basemodel:2035: 23.147731027694803 <- longitude -> 23.569705939649484 14:50:01 DEBUG opendrift.models.basemodel:2040: -102.55191532120129 <- z -> 0.0 14:50:01 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:50:01 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:50:01 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:50:01 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:50:01 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:50:01 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:50:01 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5834 elements 14:50:01 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5834 elements 14:50:01 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:50:01 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:50:01 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:50:01 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:50:01 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:50:01 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:50:01 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:50:01 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:50:01 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5834 elements 14:50:01 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5834 elements 14:50:01 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:50:01 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:50:01 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:50:01 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:50:01 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:50:01 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:50:01 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:50:01 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:50:01 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:50:01 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5834 elements 14:50:01 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5834 elements 14:50:01 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:50:01 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-24 00:00:00 (before) 2024-04-24 03:00:00 (after) 14:50:01 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-24 00:00:00) in space (linearNDFast) 14:50:01 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:50:01 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-24 03:00:00) in space (linearNDFast) 14:50:01 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:50:01 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-24 00:00:00, weight 0.43) and after (2024-04-24 03:00:00, weight 0.57) in time 14:50:01 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:50:01 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:50:01 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:50:01 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:50:01 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:50:01 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd 14:50:01 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:50:01 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5834 elements 14:50:01 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 14:50:01 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:50:01 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-24 00:00:00 (before) 2024-04-24 03:00:00 (after) 14:50:01 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-24 00:00:00) in space (linearNDFast) 14:50:01 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:50:01 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-24 03:00:00) in space (linearNDFast) 14:50:01 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:50:01 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-24 00:00:00, weight 0.43) and after (2024-04-24 03:00:00, weight 0.57) in time 14:50:01 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:50:01 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:50:01 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:50:01 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:50:01 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'] 14:50:01 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:50:01 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:50:01 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:50:01 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:50:01 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.355757 (min) 0.153653 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.114183 (min) 0.125588 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:905: x_wind: 5.64974 (min) 8.86846 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:905: y_wind: -5.21136 (min) 1.21519 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:50:01 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.809454, mean: 1.372551, max: 1.975067 14:50:01 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:50:01 DEBUG opendrift.models.physics_methods:1058: min: 4.901461, mean: 6.323269, max: 7.656328 14:50:01 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.901461, mean: 6.323269, max: 7.656328 14:50:01 DEBUG opendrift.models.basemodel:1667: 3 elements scheduled for deactivation (stranded) 14:50:01 DEBUG opendrift.models.basemodel:1669: (z: -3.163890 to 0.000000) 14:50:01 DEBUG opendrift.models.basemodel:1687: Removed 3 elements. 14:50:01 DEBUG opendrift.models.basemodel:1690: Removed 3 values from environment. 14:50:01 DEBUG opendrift.models.basemodel:1695: remove items from profile for z 14:50:01 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_temperature 14:50:01 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_salinity 14:50:01 DEBUG opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity 14:50:01 DEBUG opendrift.models.basemodel:1699: Removed 3 values from environment_profiles. 14:50:01 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:50:01 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:50:01 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:50:01 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:50:01 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:50:01 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:50:01 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:50:01 DEBUG opendrift.models.physics_methods:1058: min: 4.901461, mean: 6.323911, max: 7.656328 14:50:01 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:50:01 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.014937, dN_50: 0.001172 14:50:01 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:50:01 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.02897305911775915 14:50:01 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:50:01 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:50:01 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:50:01 DEBUG opendrift.models.physics_methods:912: Advecting 189 of 5831 elements above 0.100m with wind-sheared ocean current (0.005181 m/s - 0.268810 m/s) 14:50:01 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:50:01 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0032548903815505263 and 0.43926938037469254 m/s 14:50:01 DEBUG opendrift.models.basemodel:2097: 5831 active elements (169 deactivated) 14:50:01 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:50:01 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:50:01 INFO opendrift.models.basemodel:2011: 2024-04-24 02:42:41.057477 - step 61 of 120 - 5831 active elements (169 deactivated) 14:50:01 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:50:01 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:50:01 DEBUG opendrift.models.basemodel:2030: 34.89457586319941 <- latitude -> 35.694237651755536 14:50:01 DEBUG opendrift.models.basemodel:2035: 23.14316725954515 <- longitude -> 23.57989952270024 14:50:01 DEBUG opendrift.models.basemodel:2040: -101.2799996864725 <- z -> 0.0 14:50:01 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:50:01 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:50:01 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:50:01 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:50:01 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:50:01 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:50:01 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5831 elements 14:50:01 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5831 elements 14:50:01 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:50:01 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:50:01 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:50:01 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:50:01 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:50:01 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:50:01 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:50:01 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:50:01 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5831 elements 14:50:01 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5831 elements 14:50:01 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:50:01 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:50:01 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:50:01 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:50:01 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:50:01 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:50:01 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:50:01 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:50:01 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:50:01 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5831 elements 14:50:01 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5831 elements 14:50:01 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:50:01 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-24 00:00:00 (before) 2024-04-24 03:00:00 (after) 14:50:01 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-24 00:00:00) in space (linearNDFast) 14:50:01 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:50:01 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-24 03:00:00) in space (linearNDFast) 14:50:01 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:50:01 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-24 00:00:00, weight 0.10) and after (2024-04-24 03:00:00, weight 0.90) in time 14:50:01 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:50:01 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:50:01 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:50:01 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:50:01 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:50:01 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd 14:50:01 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:50:01 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5831 elements 14:50:01 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 5831 elements 14:50:01 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:50:01 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-24 00:00:00 (before) 2024-04-24 03:00:00 (after) 14:50:01 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-24 00:00:00) in space (linearNDFast) 14:50:01 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:50:01 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-24 03:00:00) in space (linearNDFast) 14:50:01 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:50:01 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-24 00:00:00, weight 0.10) and after (2024-04-24 03:00:00, weight 0.90) in time 14:50:01 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:50:01 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:50:01 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:50:01 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:50:01 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'] 14:50:01 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:50:01 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:50:01 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:50:01 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:50:01 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.299158 (min) 0.202901 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.102878 (min) 0.175071 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:905: x_wind: 5.94358 (min) 8.92055 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:905: y_wind: -5.90569 (min) 0.164676 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:50:01 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:50:01 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.869655, mean: 1.607644, max: 2.146663 14:50:01 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:50:01 DEBUG opendrift.models.physics_methods:1058: min: 5.080460, mean: 6.847387, max: 7.981995 14:50:01 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 5.080460, mean: 6.847387, max: 7.981995 14:50:01 DEBUG opendrift.models.basemodel:1667: 2 elements scheduled for deactivation (stranded) 14:50:01 DEBUG opendrift.models.basemodel:1669: (z: 0.000000 to 0.000000) 14:50:01 DEBUG opendrift.models.basemodel:1687: Removed 2 elements. 14:50:01 DEBUG opendrift.models.basemodel:1690: Removed 2 values from environment. 14:50:01 DEBUG opendrift.models.basemodel:1695: remove items from profile for z 14:50:01 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_temperature 14:50:01 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_salinity 14:50:01 DEBUG opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity 14:50:01 DEBUG opendrift.models.basemodel:1699: Removed 2 values from environment_profiles. 14:50:01 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:50:01 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:50:01 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:50:01 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:50:01 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:50:01 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:50:01 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:50:01 DEBUG opendrift.models.physics_methods:1058: min: 5.080460, mean: 6.847962, max: 7.981995 14:50:01 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:50:01 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.014660, dN_50: 0.001151 14:50:01 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:50:01 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.03148989679983998 14:50:01 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:50:01 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:50:01 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:50:01 DEBUG opendrift.models.physics_methods:912: Advecting 200 of 5829 elements above 0.100m with wind-sheared ocean current (0.021991 m/s - 0.271873 m/s) 14:50:01 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:50:01 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0020527844334179072 and 0.4142131877247303 m/s 14:50:01 DEBUG opendrift.models.basemodel:2097: 5829 active elements (171 deactivated) 14:50:01 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:50:01 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:50:01 INFO opendrift.models.basemodel:2011: 2024-04-24 03:42:41.057477 - step 62 of 120 - 5829 active elements (171 deactivated) 14:50:01 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:50:01 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:50:01 DEBUG opendrift.models.basemodel:2030: 34.90264759344365 <- latitude -> 35.69135182618176 14:50:01 DEBUG opendrift.models.basemodel:2035: 23.14683669768133 <- longitude -> 23.57534597424952 14:50:01 DEBUG opendrift.models.basemodel:2040: -100.62412405199525 <- z -> 0.0 14:50:01 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:50:01 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:50:01 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:50:01 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:50:01 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:50:01 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:50:01 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5829 elements 14:50:01 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5829 elements 14:50:01 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:50:01 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:50:01 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:50:01 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:50:01 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:50:01 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:50:01 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:50:01 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:50:01 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5829 elements 14:50:01 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5829 elements 14:50:01 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:50:01 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:50:01 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:50:01 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:50:01 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:50:01 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:50:01 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:50:01 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:50:01 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:50:01 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5829 elements 14:50:01 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5829 elements 14:50:01 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:50:01 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-24 03:00:00 (before) 2024-04-24 06:00:00 (after) 14:50:01 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity 14:50:14 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_sea_water_velocity to retrieve y_sea_water_velocity 14:50:19 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:50:19 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values 14:50:19 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values 14:50:19 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity'] 14:50:19 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 13x28x22) for time after (2024-04-24 06:00:00) 14:50:19 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-24 03:00:00) in space (linearNDFast) 14:50:19 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:50:19 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-24 06:00:00) in space (linearNDFast) 14:50:19 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:50:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1063 elements, expanding data 1 14:50:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1063 elements, expanding data 1 14:50:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1063 elements, expanding data 1 14:50:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1063 elements, expanding data 1 14:50:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1063 elements, expanding data 1 14:50:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1063 elements, expanding data 1 14:50:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1063 elements, expanding data 1 14:50:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1063 elements, expanding data 1 14:50:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1063 elements, expanding data 1 14:50:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1063 elements, expanding data 1 14:50:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1063 elements, expanding data 1 14:50:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1063 elements, expanding data 1 14:50:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1063 elements, expanding data 1 14:50:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1063 elements, expanding data 1 14:50:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1063 elements, expanding data 1 14:50:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1063 elements, expanding data 1 14:50:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1063 elements, expanding data 1 14:50:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1063 elements, expanding data 1 14:50:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1063 elements, expanding data 1 14:50:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1063 elements, expanding data 1 14:50:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1063 elements, expanding data 1 14:50:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1063 elements, expanding data 1 14:50:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1063 elements, expanding data 1 14:50:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1063 elements, expanding data 1 14:50:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1063 elements, expanding data 1 14:50:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1063 elements, expanding data 1 14:50:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1063 elements, expanding data 1 14:50:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1063 elements, expanding data 1 14:50:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1063 elements, expanding data 1 14:50:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1063 elements, expanding data 1 14:50:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1063 elements, expanding data 1 14:50:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1063 elements, expanding data 1 14:50:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1063 elements, expanding data 1 14:50:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1063 elements, expanding data 1 14:50:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1063 elements, expanding data 1 14:50:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1063 elements, expanding data 1 14:50:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1063 elements, expanding data 1 14:50:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1063 elements, expanding data 1 14:50:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1063 elements, expanding data 1 14:50:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1063 elements, expanding data 1 14:50:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1063 elements, expanding data 1 14:50:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1063 elements, expanding data 1 14:50:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1063 elements, expanding data 1 14:50:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1063 elements, expanding data 1 14:50:19 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-24 03:00:00, weight 0.76) and after (2024-04-24 06:00:00, weight 0.24) in time 14:50:19 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:50:19 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:50:19 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:50:19 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:50:19 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:50: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 14:50:19 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:50:19 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5829 elements 14:50: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 5829 elements 14:50:19 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:50:19 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-24 03:00:00 (before) 2024-04-24 06:00:00 (after) 14:50:19 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_wind to retrieve x_wind 14:50:19 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_wind to retrieve y_wind 14:50:19 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:50:19 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values 14:50:19 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values 14:50:19 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 7x8x1) for time after (2024-04-24 06:00:00) 14:50:19 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-24 03:00:00) in space (linearNDFast) 14:50:19 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:50:19 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-24 06:00:00) in space (linearNDFast) 14:50:19 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:50:19 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-24 03:00:00, weight 0.76) and after (2024-04-24 06:00:00, weight 0.24) in time 14:50:19 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:50:19 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:50:19 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:50:19 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:50: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'] 14:50:20 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:50:20 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:50:20 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:50:20 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:50:20 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.280916 (min) 0.245401 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.121554 (min) 0.170412 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:905: x_wind: 6.09364 (min) 8.86945 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:905: y_wind: -6.14522 (min) -0.0943121 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:50:20 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.919551, mean: 1.717793, max: 2.286248 14:50:20 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:50:20 DEBUG opendrift.models.physics_methods:1058: min: 5.224172, mean: 7.082459, max: 8.237421 14:50:20 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 5.224172, mean: 7.082459, max: 8.237421 14:50:20 DEBUG opendrift.models.basemodel:1667: 9 elements scheduled for deactivation (stranded) 14:50:20 DEBUG opendrift.models.basemodel:1669: (z: -10.047316 to 0.000000) 14:50:20 DEBUG opendrift.models.basemodel:1687: Removed 9 elements. 14:50:20 DEBUG opendrift.models.basemodel:1690: Removed 9 values from environment. 14:50:20 DEBUG opendrift.models.basemodel:1695: remove items from profile for z 14:50:20 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_temperature 14:50:20 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_salinity 14:50:20 DEBUG opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity 14:50:20 DEBUG opendrift.models.basemodel:1699: Removed 9 values from environment_profiles. 14:50:20 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:50:20 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:50:20 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:50:20 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:50:20 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:50:20 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:50:20 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:50:20 DEBUG opendrift.models.physics_methods:1058: min: 5.224172, mean: 7.084624, max: 8.237421 14:50:20 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:50:20 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.014785, dN_50: 0.001160 14:50:20 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:50:20 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.0335372389370477 14:50:20 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:50:20 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:50:20 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:50:20 DEBUG opendrift.models.physics_methods:912: Advecting 198 of 5820 elements above 0.100m with wind-sheared ocean current (0.046384 m/s - 0.270749 m/s) 14:50:20 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:50:20 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.002724606294522833 and 0.4209136808800397 m/s 14:50:20 DEBUG opendrift.models.basemodel:2097: 5820 active elements (180 deactivated) 14:50:20 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:50:20 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:50:20 INFO opendrift.models.basemodel:2011: 2024-04-24 04:42:41.057477 - step 63 of 120 - 5820 active elements (180 deactivated) 14:50:20 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:50:20 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:50:20 DEBUG opendrift.models.basemodel:2030: 34.899968865736895 <- latitude -> 35.69130087060427 14:50:20 DEBUG opendrift.models.basemodel:2035: 23.157274500503718 <- longitude -> 23.576182886260053 14:50:20 DEBUG opendrift.models.basemodel:2040: -99.61776296192731 <- z -> 0.0 14:50:20 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:50:20 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:50:20 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:50:20 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:50:20 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:50:20 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:50:20 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5820 elements 14:50:20 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5820 elements 14:50:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:50:20 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:50:20 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:50:20 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:50:20 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:50:20 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:50:20 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:50:20 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:50:20 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5820 elements 14:50:20 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5820 elements 14:50:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:50:20 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:50:20 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:50:20 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:50:20 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:50:20 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:50:20 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:50:20 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:50:20 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:50:20 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5820 elements 14:50:20 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5820 elements 14:50:20 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:50:20 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-24 03:00:00 (before) 2024-04-24 06:00:00 (after) 14:50:20 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-24 03:00:00) in space (linearNDFast) 14:50:20 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:50:20 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-24 06:00:00) in space (linearNDFast) 14:50:20 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:50:20 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-24 03:00:00, weight 0.43) and after (2024-04-24 06:00:00, weight 0.57) in time 14:50:20 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:50:20 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:50:20 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:50:20 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:50:20 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:50: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 14:50:20 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:50:20 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5820 elements 14:50: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 5820 elements 14:50:20 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:50:20 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-24 03:00:00 (before) 2024-04-24 06:00:00 (after) 14:50:20 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-24 03:00:00) in space (linearNDFast) 14:50:20 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:50:20 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-24 06:00:00) in space (linearNDFast) 14:50:20 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:50:20 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-24 03:00:00, weight 0.43) and after (2024-04-24 06:00:00, weight 0.57) in time 14:50:20 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:50:20 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:50:20 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:50:20 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:50: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'] 14:50:20 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:50:20 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:50:20 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:50:20 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:50:20 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.224032 (min) 0.295873 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.148765 (min) 0.139435 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:905: x_wind: 6.21558 (min) 8.79728 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:905: y_wind: -6.20425 (min) -0.143607 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:50:20 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.955606, mean: 1.767788, max: 2.351871 14:50:20 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:50:20 DEBUG opendrift.models.physics_methods:1058: min: 5.325607, mean: 7.187450, max: 8.354804 14:50:20 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 5.325607, mean: 7.187450, max: 8.354804 14:50:20 DEBUG opendrift.models.basemodel:1667: 5 elements scheduled for deactivation (stranded) 14:50:20 DEBUG opendrift.models.basemodel:1669: (z: -7.913001 to 0.000000) 14:50:20 DEBUG opendrift.models.basemodel:1687: Removed 5 elements. 14:50:20 DEBUG opendrift.models.basemodel:1690: Removed 5 values from environment. 14:50:20 DEBUG opendrift.models.basemodel:1695: remove items from profile for z 14:50:20 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_temperature 14:50:20 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_salinity 14:50:20 DEBUG opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity 14:50:20 DEBUG opendrift.models.basemodel:1699: Removed 5 values from environment_profiles. 14:50:20 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:50:20 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:50:20 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:50:20 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:50:20 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:50:20 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:50:20 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:50:20 DEBUG opendrift.models.physics_methods:1058: min: 5.325607, mean: 7.188604, max: 8.354804 14:50:20 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:50:20 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.015115, dN_50: 0.001186 14:50:20 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:50:20 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.03449973530060552 14:50:20 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:50:20 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:50:20 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:50:20 DEBUG opendrift.models.physics_methods:912: Advecting 195 of 5815 elements above 0.100m with wind-sheared ocean current (0.024597 m/s - 0.268630 m/s) 14:50:20 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:50:20 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0028031813768717483 and 0.45636873401289446 m/s 14:50:20 DEBUG opendrift.models.basemodel:2097: 5815 active elements (185 deactivated) 14:50:20 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:50:20 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:50:20 INFO opendrift.models.basemodel:2011: 2024-04-24 05:42:41.057477 - step 64 of 120 - 5815 active elements (185 deactivated) 14:50:20 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:50:20 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:50:20 DEBUG opendrift.models.basemodel:2030: 34.895785342562114 <- latitude -> 35.69436814880788 14:50:20 DEBUG opendrift.models.basemodel:2035: 23.16199607896817 <- longitude -> 23.585941683095616 14:50:20 DEBUG opendrift.models.basemodel:2040: -98.91266022612241 <- z -> 0.0 14:50:20 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:50:20 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:50:20 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:50:20 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:50:20 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:50:20 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:50:20 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5815 elements 14:50:20 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5815 elements 14:50:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:50:20 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:50:20 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:50:20 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:50:20 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:50:20 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:50:20 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:50:20 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:50:20 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5815 elements 14:50:20 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5815 elements 14:50:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:50:20 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:50:20 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:50:20 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:50:20 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:50:20 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:50:20 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:50:20 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:50:20 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:50:20 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5815 elements 14:50:20 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5815 elements 14:50:20 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:50:20 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-24 03:00:00 (before) 2024-04-24 06:00:00 (after) 14:50:20 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-24 03:00:00) in space (linearNDFast) 14:50:20 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:50:20 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-24 06:00:00) in space (linearNDFast) 14:50:20 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:50:20 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-24 03:00:00, weight 0.10) and after (2024-04-24 06:00:00, weight 0.90) in time 14:50:20 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:50:20 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:50:20 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:50:20 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:50:20 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:50: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 14:50:20 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:50:20 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5815 elements 14:50: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 5815 elements 14:50:20 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:50:20 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-24 03:00:00 (before) 2024-04-24 06:00:00 (after) 14:50:20 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-24 03:00:00) in space (linearNDFast) 14:50:20 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:50:20 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-24 06:00:00) in space (linearNDFast) 14:50:20 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:50:20 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-24 03:00:00, weight 0.10) and after (2024-04-24 06:00:00, weight 0.90) in time 14:50:20 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:50:20 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:50:20 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:50:20 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:50: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'] 14:50:20 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:50:20 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:50:20 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:50:20 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:50:20 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.16693 (min) 0.34373 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.186571 (min) 0.101464 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:905: x_wind: 6.34247 (min) 8.74409 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:905: y_wind: -6.27517 (min) -0.234958 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:50:20 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:50:20 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.992770, mean: 1.818408, max: 2.417487 14:50:20 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:50:20 DEBUG opendrift.models.physics_methods:1058: min: 5.428175, mean: 7.292243, max: 8.470552 14:50:20 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 5.428175, mean: 7.292243, max: 8.470552 14:50:20 DEBUG opendrift.models.basemodel:1667: 10 elements scheduled for deactivation (stranded) 14:50:20 DEBUG opendrift.models.basemodel:1669: (z: -14.354554 to 0.000000) 14:50:20 DEBUG opendrift.models.basemodel:1687: Removed 10 elements. 14:50:20 DEBUG opendrift.models.basemodel:1690: Removed 10 values from environment. 14:50:20 DEBUG opendrift.models.basemodel:1695: remove items from profile for z 14:50:20 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_temperature 14:50:20 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_salinity 14:50:20 DEBUG opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity 14:50:20 DEBUG opendrift.models.basemodel:1699: Removed 10 values from environment_profiles. 14:50:20 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:50:20 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:50:20 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:50:20 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:50:20 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:50:20 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:50:20 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:50:20 DEBUG opendrift.models.physics_methods:1058: min: 5.463130, mean: 7.294669, max: 8.470551 14:50:20 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:50:20 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.015437, dN_50: 0.001211 14:50:20 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:50:20 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.03546215410063794 14:50:20 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:50:20 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:50:20 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:50:20 DEBUG opendrift.models.physics_methods:912: Advecting 196 of 5805 elements above 0.100m with wind-sheared ocean current (0.004917 m/s - 0.266964 m/s) 14:50:20 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:50:20 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0013575350410912489 and 0.42267671765330056 m/s 14:50:20 DEBUG opendrift.models.basemodel:2097: 5805 active elements (195 deactivated) 14:50:20 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:50:20 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:50:20 INFO opendrift.models.basemodel:2011: 2024-04-24 06:42:41.057477 - step 65 of 120 - 5805 active elements (195 deactivated) 14:50:20 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:50:20 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:50:20 DEBUG opendrift.models.basemodel:2030: 34.89443051349838 <- latitude -> 35.69120246527178 14:50:20 DEBUG opendrift.models.basemodel:2035: 23.155836427682384 <- longitude -> 23.580547961775 14:50:20 DEBUG opendrift.models.basemodel:2040: -97.67013942982433 <- z -> 0.0 14:50:20 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:50:20 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:50:20 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:50:20 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:50:20 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:50:20 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:50:20 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5805 elements 14:50:20 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5805 elements 14:50:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:50:20 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:50:20 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:50:20 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:50:20 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:50:20 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:50:20 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:50:20 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:50:20 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5805 elements 14:50:20 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5805 elements 14:50:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:50:20 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:50:20 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:50:20 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:50:20 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:50:20 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:50:20 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:50:20 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:50:20 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:50:20 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5805 elements 14:50:20 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5805 elements 14:50:20 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:50:20 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-24 06:00:00 (before) 2024-04-24 09:00:00 (after) 14:50:20 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity 14:50:29 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_sea_water_velocity to retrieve y_sea_water_velocity 14:50:32 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:50:32 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values 14:50:32 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values 14:50:32 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity'] 14:50:32 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 13x28x21) for time after (2024-04-24 09:00:00) 14:50:32 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-24 06:00:00) in space (linearNDFast) 14:50:32 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:50:32 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-24 09:00:00) in space (linearNDFast) 14:50:32 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:50:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1081 elements, expanding data 1 14:50:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1081 elements, expanding data 1 14:50:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1081 elements, expanding data 1 14:50:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1081 elements, expanding data 1 14:50:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1081 elements, expanding data 1 14:50:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1081 elements, expanding data 1 14:50:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1081 elements, expanding data 1 14:50:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1081 elements, expanding data 1 14:50:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1081 elements, expanding data 1 14:50:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1081 elements, expanding data 1 14:50:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1081 elements, expanding data 1 14:50:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1081 elements, expanding data 1 14:50:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1081 elements, expanding data 1 14:50:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1081 elements, expanding data 1 14:50:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1081 elements, expanding data 1 14:50:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1081 elements, expanding data 1 14:50:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1081 elements, expanding data 1 14:50:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1081 elements, expanding data 1 14:50:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1081 elements, expanding data 1 14:50:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1081 elements, expanding data 1 14:50:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1081 elements, expanding data 1 14:50:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1081 elements, expanding data 1 14:50:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1081 elements, expanding data 1 14:50:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1081 elements, expanding data 1 14:50:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1081 elements, expanding data 1 14:50:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1081 elements, expanding data 1 14:50:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1081 elements, expanding data 1 14:50:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1081 elements, expanding data 1 14:50:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1081 elements, expanding data 1 14:50:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1081 elements, expanding data 1 14:50:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1081 elements, expanding data 1 14:50:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1081 elements, expanding data 1 14:50:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1081 elements, expanding data 1 14:50:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1081 elements, expanding data 1 14:50:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1081 elements, expanding data 1 14:50:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1081 elements, expanding data 1 14:50:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1081 elements, expanding data 1 14:50:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1081 elements, expanding data 1 14:50:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1081 elements, expanding data 1 14:50:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1081 elements, expanding data 1 14:50:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1081 elements, expanding data 1 14:50:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1081 elements, expanding data 1 14:50:32 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-24 06:00:00, weight 0.76) and after (2024-04-24 09:00:00, weight 0.24) in time 14:50:32 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:50:32 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:50:32 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:50:32 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:50:32 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:50:32 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd 14:50:32 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:50:32 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5805 elements 14:50:32 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 5805 elements 14:50:32 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:50:32 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-24 06:00:00 (before) 2024-04-24 09:00:00 (after) 14:50:32 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_wind to retrieve x_wind 14:50:32 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_wind to retrieve y_wind 14:50:33 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:50:33 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values 14:50:33 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values 14:50:33 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 7x8x1) for time after (2024-04-24 09:00:00) 14:50:33 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-24 06:00:00) in space (linearNDFast) 14:50:33 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:50:33 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-24 09:00:00) in space (linearNDFast) 14:50:33 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:50:33 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-24 06:00:00, weight 0.76) and after (2024-04-24 09:00:00, weight 0.24) in time 14:50:33 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:50:33 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:50:33 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:50:33 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:50: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'] 14:50:33 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:50:33 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:50:33 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:50:33 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:50:33 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.163934 (min) 0.354102 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.237763 (min) 0.0847269 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:905: x_wind: 6.44874 (min) 8.69366 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:905: y_wind: -6.16575 (min) -0.261369 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:50:33 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.028937, mean: 1.808756, max: 2.379452 14:50:33 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:50:33 DEBUG opendrift.models.physics_methods:1058: min: 5.526167, mean: 7.278723, max: 8.403652 14:50:33 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 5.526167, mean: 7.278723, max: 8.403652 14:50:33 DEBUG opendrift.models.basemodel:1667: 13 elements scheduled for deactivation (stranded) 14:50:33 DEBUG opendrift.models.basemodel:1669: (z: -12.556700 to 0.000000) 14:50:33 DEBUG opendrift.models.basemodel:1687: Removed 13 elements. 14:50:33 DEBUG opendrift.models.basemodel:1690: Removed 13 values from environment. 14:50:33 DEBUG opendrift.models.basemodel:1695: remove items from profile for z 14:50:33 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_temperature 14:50:33 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_salinity 14:50:33 DEBUG opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity 14:50:33 DEBUG opendrift.models.basemodel:1699: Removed 13 values from environment_profiles. 14:50:33 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:50:33 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:50:33 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:50:33 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:50:33 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:50:33 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:50:33 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:50:33 DEBUG opendrift.models.physics_methods:1058: min: 5.526166, mean: 7.281878, max: 8.403652 14:50:33 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:50:33 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.015875, dN_50: 0.001246 14:50:33 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:50:33 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.03490428902102841 14:50:33 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:50:33 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:50:33 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:50:33 DEBUG opendrift.models.physics_methods:912: Advecting 188 of 5792 elements above 0.100m with wind-sheared ocean current (0.001108 m/s - 0.264695 m/s) 14:50:33 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:50:33 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0023523709152908885 and 0.4490439580651616 m/s 14:50:33 DEBUG opendrift.models.basemodel:2097: 5792 active elements (208 deactivated) 14:50:33 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:50:33 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:50:33 INFO opendrift.models.basemodel:2011: 2024-04-24 07:42:41.057477 - step 66 of 120 - 5792 active elements (208 deactivated) 14:50:33 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:50:33 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:50:33 DEBUG opendrift.models.basemodel:2030: 34.89100071070753 <- latitude -> 35.683745006618594 14:50:33 DEBUG opendrift.models.basemodel:2035: 23.16169618290401 <- longitude -> 23.587326391252354 14:50:33 DEBUG opendrift.models.basemodel:2040: -96.2820836019118 <- z -> 0.0 14:50:33 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:50:33 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:50:33 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:50:33 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:50:33 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:50:33 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:50:33 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5792 elements 14:50:33 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5792 elements 14:50:33 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:50:33 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:50:33 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:50:33 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:50:33 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:50:33 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:50:33 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:50:33 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:50:33 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5792 elements 14:50:33 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5792 elements 14:50:33 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:50:33 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:50:33 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:50:33 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:50:33 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:50:33 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:50:33 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:50:33 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:50:33 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:50:33 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5792 elements 14:50:33 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5792 elements 14:50:33 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:50:33 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-24 06:00:00 (before) 2024-04-24 09:00:00 (after) 14:50:33 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-24 06:00:00) in space (linearNDFast) 14:50:33 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:50:33 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-24 09:00:00) in space (linearNDFast) 14:50:33 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:50:33 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-24 06:00:00, weight 0.43) and after (2024-04-24 09:00:00, weight 0.57) in time 14:50:33 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:50:33 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:50:33 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:50:33 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:50:33 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:50: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 14:50:33 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:50:33 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5792 elements 14:50: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 5792 elements 14:50:33 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:50:33 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-24 06:00:00 (before) 2024-04-24 09:00:00 (after) 14:50:33 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-24 06:00:00) in space (linearNDFast) 14:50:33 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:50:33 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-24 09:00:00) in space (linearNDFast) 14:50:33 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:50:33 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-24 06:00:00, weight 0.43) and after (2024-04-24 09:00:00, weight 0.57) in time 14:50:33 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:50:33 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:50:33 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:50:33 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:50: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'] 14:50:33 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:50:33 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:50:33 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:50:33 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:50:33 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.162732 (min) 0.368109 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.302417 (min) 0.0374648 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:905: x_wind: 6.51143 (min) 8.64031 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:905: y_wind: -5.97493 (min) -0.264677 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:50:33 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.051201, mean: 1.776340, max: 2.295238 14:50:33 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:50:33 DEBUG opendrift.models.physics_methods:1058: min: 5.585633, mean: 7.219902, max: 8.253601 14:50:33 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 5.585633, mean: 7.219902, max: 8.253601 14:50:33 DEBUG opendrift.models.basemodel:1667: 22 elements scheduled for deactivation (stranded) 14:50:33 DEBUG opendrift.models.basemodel:1669: (z: 0.000000 to 0.000000) 14:50:33 DEBUG opendrift.models.basemodel:1687: Removed 22 elements. 14:50:33 DEBUG opendrift.models.basemodel:1690: Removed 22 values from environment. 14:50:33 DEBUG opendrift.models.basemodel:1695: remove items from profile for z 14:50:33 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_temperature 14:50:33 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_salinity 14:50:33 DEBUG opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity 14:50:33 DEBUG opendrift.models.basemodel:1699: Removed 22 values from environment_profiles. 14:50:33 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:50:33 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:50:33 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:50:33 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:50:33 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:50:33 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:50:33 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:50:33 DEBUG opendrift.models.physics_methods:1058: min: 5.585633, mean: 7.224373, max: 8.253601 14:50:33 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:50:33 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.016356, dN_50: 0.001284 14:50:33 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:50:33 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.03366909340461632 14:50:33 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:50:33 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:50:33 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:50:33 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 160 surface elements 14:50:33 DEBUG opendrift.models.physics_methods:912: Advecting 166 of 5770 elements above 0.100m with wind-sheared ocean current (0.011756 m/s - 0.262386 m/s) 14:50:33 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:50:33 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.002477984868606946 and 0.4668837941737423 m/s 14:50:33 DEBUG opendrift.models.basemodel:2097: 5770 active elements (230 deactivated) 14:50:33 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:50:33 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:50:33 INFO opendrift.models.basemodel:2011: 2024-04-24 08:42:41.057477 - step 67 of 120 - 5770 active elements (230 deactivated) 14:50:33 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:50:33 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:50:33 DEBUG opendrift.models.basemodel:2030: 34.89224160276657 <- latitude -> 35.675105276194145 14:50:33 DEBUG opendrift.models.basemodel:2035: 23.162829015311353 <- longitude -> 23.589776211621096 14:50:33 DEBUG opendrift.models.basemodel:2040: -95.20120358400405 <- z -> 0.0 14:50:33 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:50:33 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:50:33 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:50:33 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:50:33 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:50:33 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:50:33 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5770 elements 14:50:33 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5770 elements 14:50:33 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:50:33 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:50:33 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:50:33 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:50:33 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:50:33 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:50:33 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:50:33 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:50:33 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5770 elements 14:50:33 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5770 elements 14:50:33 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:50:33 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:50:33 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:50:33 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:50:33 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:50:33 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:50:33 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:50:33 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:50:33 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:50:33 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5770 elements 14:50:33 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5770 elements 14:50:33 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:50:33 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-24 06:00:00 (before) 2024-04-24 09:00:00 (after) 14:50:33 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-24 06:00:00) in space (linearNDFast) 14:50:33 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:50:33 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-24 09:00:00) in space (linearNDFast) 14:50:33 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:50:33 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-24 06:00:00, weight 0.10) and after (2024-04-24 09:00:00, weight 0.90) in time 14:50:33 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:50:33 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:50:33 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:50:33 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:50:33 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:50: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 14:50:33 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:50:33 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5770 elements 14:50: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 5770 elements 14:50:33 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:50:33 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-24 06:00:00 (before) 2024-04-24 09:00:00 (after) 14:50:33 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-24 06:00:00) in space (linearNDFast) 14:50:33 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:50:33 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-24 09:00:00) in space (linearNDFast) 14:50:33 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:50:33 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-24 06:00:00, weight 0.10) and after (2024-04-24 09:00:00, weight 0.90) in time 14:50:33 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:50:33 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:50:33 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:50:33 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:50: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'] 14:50:33 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:50:33 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:50:33 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:50:33 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:50:33 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.170469 (min) 0.40898 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.374097 (min) 0.0213939 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:905: x_wind: 6.59492 (min) 8.56451 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:905: y_wind: -5.75849 (min) -0.336433 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:50:33 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:50:33 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.079557, mean: 1.746676, max: 2.212567 14:50:33 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:50:33 DEBUG opendrift.models.physics_methods:1058: min: 5.660468, mean: 7.165503, max: 8.103596 14:50:33 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 5.660468, mean: 7.165503, max: 8.103596 14:50:33 DEBUG opendrift.models.basemodel:1667: 30 elements scheduled for deactivation (stranded) 14:50:33 DEBUG opendrift.models.basemodel:1669: (z: -13.199040 to 0.000000) 14:50:33 DEBUG opendrift.models.basemodel:1687: Removed 30 elements. 14:50:33 DEBUG opendrift.models.basemodel:1690: Removed 30 values from environment. 14:50:33 DEBUG opendrift.models.basemodel:1695: remove items from profile for z 14:50:33 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_temperature 14:50:33 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_salinity 14:50:33 DEBUG opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity 14:50:33 DEBUG opendrift.models.basemodel:1699: Removed 30 values from environment_profiles. 14:50:33 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:50:33 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:50:33 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:50:33 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:50:33 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:50:33 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:50:33 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:50:33 DEBUG opendrift.models.physics_methods:1058: min: 5.660468, mean: 7.170654, max: 8.103596 14:50:33 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:50:33 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.016822, dN_50: 0.001320 14:50:33 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:50:33 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.03245653576077723 14:50:33 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:50:33 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:50:33 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:50:33 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 138 surface elements 14:50:33 DEBUG opendrift.models.physics_methods:912: Advecting 142 of 5740 elements above 0.100m with wind-sheared ocean current (0.042156 m/s - 0.259421 m/s) 14:50:33 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:50:33 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.003392754081698478 and 0.4852149981765957 m/s 14:50:33 DEBUG opendrift.models.basemodel:2097: 5740 active elements (260 deactivated) 14:50:33 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:50:33 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:50:33 INFO opendrift.models.basemodel:2011: 2024-04-24 09:42:41.057477 - step 68 of 120 - 5740 active elements (260 deactivated) 14:50:33 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:50:33 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:50:33 DEBUG opendrift.models.basemodel:2030: 34.892177419002216 <- latitude -> 35.6616024796249 14:50:33 DEBUG opendrift.models.basemodel:2035: 23.15083384956484 <- longitude -> 23.592138161922435 14:50:33 DEBUG opendrift.models.basemodel:2040: -94.01151015941338 <- z -> 0.0 14:50:33 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:50:33 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:50:33 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:50:33 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:50:33 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:50:33 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:50:33 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5740 elements 14:50:33 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5740 elements 14:50:33 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:50:33 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:50:33 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:50:33 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:50:33 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:50:33 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:50:33 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:50:33 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:50:33 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5740 elements 14:50:33 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5740 elements 14:50:33 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:50:33 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:50:33 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:50:33 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:50:33 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:50:33 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:50:33 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:50:33 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:50:33 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:50:33 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5740 elements 14:50:33 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5740 elements 14:50:33 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:50:33 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-24 09:00:00 (before) 2024-04-24 12:00:00 (after) 14:50:33 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity 14:50:42 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_sea_water_velocity to retrieve y_sea_water_velocity 14:50:46 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:50:46 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values 14:50:46 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values 14:50:46 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity'] 14:50:46 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 14x27x21) for time after (2024-04-24 12:00:00) 14:50:46 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-24 09:00:00) in space (linearNDFast) 14:50:46 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:50:46 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-24 12:00:00) in space (linearNDFast) 14:50:46 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:50:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1224 elements, expanding data 1 14:50:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1224 elements, expanding data 1 14:50:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1224 elements, expanding data 1 14:50:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1224 elements, expanding data 1 14:50:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1224 elements, expanding data 1 14:50:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1224 elements, expanding data 1 14:50:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1224 elements, expanding data 1 14:50:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1224 elements, expanding data 1 14:50:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1224 elements, expanding data 1 14:50:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1224 elements, expanding data 1 14:50:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1224 elements, expanding data 1 14:50:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1224 elements, expanding data 1 14:50:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1224 elements, expanding data 1 14:50:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1224 elements, expanding data 1 14:50:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1224 elements, expanding data 1 14:50:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1224 elements, expanding data 1 14:50:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1224 elements, expanding data 1 14:50:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1224 elements, expanding data 1 14:50:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1224 elements, expanding data 1 14:50:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1224 elements, expanding data 1 14:50:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1224 elements, expanding data 1 14:50:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1224 elements, expanding data 1 14:50:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1224 elements, expanding data 1 14:50:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1224 elements, expanding data 1 14:50:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1224 elements, expanding data 1 14:50:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1224 elements, expanding data 1 14:50:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1224 elements, expanding data 1 14:50:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1224 elements, expanding data 1 14:50:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1224 elements, expanding data 1 14:50:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1224 elements, expanding data 1 14:50:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1224 elements, expanding data 1 14:50:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1224 elements, expanding data 1 14:50:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1224 elements, expanding data 1 14:50:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1224 elements, expanding data 1 14:50:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1224 elements, expanding data 1 14:50:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1224 elements, expanding data 1 14:50:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1224 elements, expanding data 1 14:50:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1224 elements, expanding data 1 14:50:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1224 elements, expanding data 1 14:50:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1224 elements, expanding data 1 14:50:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1224 elements, expanding data 1 14:50:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1224 elements, expanding data 1 14:50:46 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-24 09:00:00, weight 0.76) and after (2024-04-24 12:00:00, weight 0.24) in time 14:50:46 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:50:46 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:50:46 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:50:46 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:50:46 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:50: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 14:50:46 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:50:46 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5740 elements 14:50: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 5740 elements 14:50:46 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:50:46 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-24 09:00:00 (before) 2024-04-24 12:00:00 (after) 14:50:46 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_wind to retrieve x_wind 14:50:46 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_wind to retrieve y_wind 14:50:46 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:50:46 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values 14:50:46 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values 14:50:46 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 7x8x1) for time after (2024-04-24 12:00:00) 14:50:46 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-24 09:00:00) in space (linearNDFast) 14:50:46 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:50:46 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-24 12:00:00) in space (linearNDFast) 14:50:46 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:50:46 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-24 09:00:00, weight 0.76) and after (2024-04-24 12:00:00, weight 0.24) in time 14:50:46 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:50:46 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:50:46 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:50:46 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:50: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'] 14:50:46 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:50:46 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:50:46 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:50:46 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:50:46 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.19885 (min) 0.383634 (max) 14:50:46 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.430435 (min) 0.00648582 (max) 14:50:46 DEBUG opendrift.models.basemodel.environment:905: x_wind: 6.65034 (min) 8.55002 (max) 14:50:46 DEBUG opendrift.models.basemodel.environment:905: y_wind: -5.98081 (min) -0.649358 (max) 14:50:46 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:50:46 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:50:46 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:50:46 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:50:46 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:50:46 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:50:46 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:50:46 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:50:46 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:50:46 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:50:46 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:50:46 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:50:46 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:50:46 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:50:46 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max) 14:50:46 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:50:46 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:50:46 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.109187, mean: 1.801967, max: 2.243312 14:50:46 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:50:46 DEBUG opendrift.models.physics_methods:1058: min: 5.737623, mean: 7.282145, max: 8.159705 14:50:46 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 5.737623, mean: 7.282145, max: 8.159705 14:50:46 DEBUG opendrift.models.basemodel:1667: 24 elements scheduled for deactivation (stranded) 14:50:46 DEBUG opendrift.models.basemodel:1669: (z: -13.996116 to 0.000000) 14:50:46 DEBUG opendrift.models.basemodel:1687: Removed 24 elements. 14:50:46 DEBUG opendrift.models.basemodel:1690: Removed 24 values from environment. 14:50:46 DEBUG opendrift.models.basemodel:1695: remove items from profile for z 14:50:46 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_temperature 14:50:46 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_salinity 14:50:46 DEBUG opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity 14:50:46 DEBUG opendrift.models.basemodel:1699: Removed 24 values from environment_profiles. 14:50:46 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:50:46 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:50:46 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:50:46 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:50:46 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:50:46 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:50:46 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:50:46 DEBUG opendrift.models.physics_methods:1058: min: 5.737623, mean: 7.286245, max: 8.159705 14:50:46 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:50:46 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.017077, dN_50: 0.001340 14:50:46 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:50:46 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.032907483046234885 14:50:46 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:50:46 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:50:46 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:50:46 DEBUG opendrift.models.physics_methods:912: Advecting 134 of 5716 elements above 0.100m with wind-sheared ocean current (0.005485 m/s - 0.259602 m/s) 14:50:46 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:50:46 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0005671218929267926 and 0.42148007824426725 m/s 14:50:46 DEBUG opendrift.models.basemodel:2097: 5716 active elements (284 deactivated) 14:50:46 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:50:46 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:50:46 INFO opendrift.models.basemodel:2011: 2024-04-24 10:42:41.057477 - step 69 of 120 - 5716 active elements (284 deactivated) 14:50:46 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:50:46 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:50:46 DEBUG opendrift.models.basemodel:2030: 34.896431329430506 <- latitude -> 35.645885456151575 14:50:46 DEBUG opendrift.models.basemodel:2035: 23.150430947522928 <- longitude -> 23.589665941968885 14:50:46 DEBUG opendrift.models.basemodel:2040: -93.2448648114727 <- z -> 0.0 14:50:46 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:50:46 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:50:46 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:50:46 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:50:46 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:50:46 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:50:46 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5716 elements 14:50:46 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5716 elements 14:50:46 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:50:46 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:50:46 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:50:46 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:50:46 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:50:46 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:50:46 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:50:46 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:50:46 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5716 elements 14:50:46 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5716 elements 14:50:46 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:50:46 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:50:46 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:50:46 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:50:46 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:50:46 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:50:46 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:50:46 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:50:46 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:50:46 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5716 elements 14:50:46 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5716 elements 14:50:46 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:50:46 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-24 09:00:00 (before) 2024-04-24 12:00:00 (after) 14:50:46 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-24 09:00:00) in space (linearNDFast) 14:50:46 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:50:46 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-24 12:00:00) in space (linearNDFast) 14:50:46 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:50:46 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-24 09:00:00, weight 0.43) and after (2024-04-24 12:00:00, weight 0.57) in time 14:50:46 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:50:46 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:50:46 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:50:46 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:50:46 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:50: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 14:50:46 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:50:46 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5716 elements 14:50: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 5716 elements 14:50:46 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:50:46 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-24 09:00:00 (before) 2024-04-24 12:00:00 (after) 14:50:46 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-24 09:00:00) in space (linearNDFast) 14:50:46 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:50:46 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-24 12:00:00) in space (linearNDFast) 14:50:46 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:50:46 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-24 09:00:00, weight 0.43) and after (2024-04-24 12:00:00, weight 0.57) in time 14:50:46 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:50:46 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:50:46 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:50:46 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:50: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'] 14:50:46 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:50:46 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:50:46 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:50:46 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:50:46 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.235723 (min) 0.285765 (max) 14:50:46 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.481293 (min) 0.00110835 (max) 14:50:46 DEBUG opendrift.models.basemodel.environment:905: x_wind: 6.77179 (min) 8.55355 (max) 14:50:46 DEBUG opendrift.models.basemodel.environment:905: y_wind: -6.37014 (min) -1.07156 (max) 14:50:46 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:50:46 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:50:46 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:50:46 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:50:46 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:50:46 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:50:46 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:50:46 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:50:46 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:50:46 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:50:46 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:50:46 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:50:46 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:50:46 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:50:46 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max) 14:50:46 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:50:46 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:50:46 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.173369, mean: 1.899055, max: 2.334101 14:50:46 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:50:46 DEBUG opendrift.models.physics_methods:1058: min: 5.901289, mean: 7.479303, max: 8.323183 14:50:46 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 5.901289, mean: 7.479303, max: 8.323183 14:50:46 DEBUG opendrift.models.basemodel:1667: 30 elements scheduled for deactivation (stranded) 14:50:46 DEBUG opendrift.models.basemodel:1669: (z: -18.789981 to 0.000000) 14:50:46 DEBUG opendrift.models.basemodel:1687: Removed 30 elements. 14:50:46 DEBUG opendrift.models.basemodel:1690: Removed 30 values from environment. 14:50:46 DEBUG opendrift.models.basemodel:1695: remove items from profile for z 14:50:46 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_temperature 14:50:46 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_salinity 14:50:46 DEBUG opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity 14:50:46 DEBUG opendrift.models.basemodel:1699: Removed 30 values from environment_profiles. 14:50:46 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:50:46 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:50:46 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:50:46 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:50:46 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:50:46 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:50:46 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:50:46 DEBUG opendrift.models.physics_methods:1058: min: 5.901289, mean: 7.484720, max: 8.323183 14:50:46 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:50:46 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.017208, dN_50: 0.001351 14:50:46 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:50:46 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.03423910775279563 14:50:46 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:50:46 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:50:46 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:50:47 DEBUG opendrift.models.physics_methods:912: Advecting 113 of 5686 elements above 0.100m with wind-sheared ocean current (0.024329 m/s - 0.261133 m/s) 14:50:47 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:50:47 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.00098034370860196 and 0.41003050301685784 m/s 14:50:47 DEBUG opendrift.models.basemodel:2097: 5686 active elements (314 deactivated) 14:50:47 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:50:47 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:50:47 INFO opendrift.models.basemodel:2011: 2024-04-24 11:42:41.057477 - step 70 of 120 - 5686 active elements (314 deactivated) 14:50:47 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:50:47 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:50:47 DEBUG opendrift.models.basemodel:2030: 34.896073617075366 <- latitude -> 35.629054727109384 14:50:47 DEBUG opendrift.models.basemodel:2035: 23.15169462637816 <- longitude -> 23.59073578623999 14:50:47 DEBUG opendrift.models.basemodel:2040: -92.27641072885606 <- z -> 0.0 14:50:47 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:50:47 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:50:47 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:50:47 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:50:47 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:50:47 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:50:47 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5686 elements 14:50:47 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5686 elements 14:50:47 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:50:47 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:50:47 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:50:47 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:50:47 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:50:47 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:50:47 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:50:47 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:50:47 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5686 elements 14:50:47 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5686 elements 14:50:47 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:50:47 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:50:47 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:50:47 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:50:47 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:50:47 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:50:47 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:50:47 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:50:47 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:50:47 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5686 elements 14:50:47 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5686 elements 14:50:47 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:50:47 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-24 09:00:00 (before) 2024-04-24 12:00:00 (after) 14:50:47 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-24 09:00:00) in space (linearNDFast) 14:50:47 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:50:47 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-24 12:00:00) in space (linearNDFast) 14:50:47 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:50:47 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-24 09:00:00, weight 0.10) and after (2024-04-24 12:00:00, weight 0.90) in time 14:50:47 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:50:47 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:50:47 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:50:47 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:50:47 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:50:47 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd 14:50:47 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:50:47 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5686 elements 14:50:47 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 5686 elements 14:50:47 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:50:47 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-24 09:00:00 (before) 2024-04-24 12:00:00 (after) 14:50:47 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-24 09:00:00) in space (linearNDFast) 14:50:47 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:50:47 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-24 12:00:00) in space (linearNDFast) 14:50:47 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:50:47 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-24 09:00:00, weight 0.10) and after (2024-04-24 12:00:00, weight 0.90) in time 14:50:47 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:50:47 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:50:47 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:50:47 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:50: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'] 14:50:47 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:50:47 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:50:47 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:50:47 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:50:47 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.274954 (min) 0.246447 (max) 14:50:47 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.56753 (min) -0.00667579 (max) 14:50:47 DEBUG opendrift.models.basemodel.environment:905: x_wind: 6.88289 (min) 8.67373 (max) 14:50:47 DEBUG opendrift.models.basemodel.environment:905: y_wind: -6.75935 (min) -1.50183 (max) 14:50:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:50:47 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:50:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:50:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:50:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:50:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:50:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:50:47 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:50:47 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:50:47 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:50:47 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:50:47 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:50:47 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:50:47 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:50:47 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max) 14:50:47 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:50:47 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:50:47 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.241541, mean: 2.006701, max: 2.434465 14:50:47 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:50:47 DEBUG opendrift.models.physics_methods:1058: min: 6.070300, mean: 7.692210, max: 8.500243 14:50:47 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 6.070300, mean: 7.692210, max: 8.500243 14:50:47 DEBUG opendrift.models.basemodel:1667: 19 elements scheduled for deactivation (stranded) 14:50:47 DEBUG opendrift.models.basemodel:1669: (z: -13.810591 to 0.000000) 14:50:47 DEBUG opendrift.models.basemodel:1687: Removed 19 elements. 14:50:47 DEBUG opendrift.models.basemodel:1690: Removed 19 values from environment. 14:50:47 DEBUG opendrift.models.basemodel:1695: remove items from profile for z 14:50:47 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_temperature 14:50:47 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_salinity 14:50:47 DEBUG opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity 14:50:47 DEBUG opendrift.models.basemodel:1699: Removed 19 values from environment_profiles. 14:50:47 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:50:47 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:50:47 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:50:47 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:50:47 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:50:47 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:50:47 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:50:47 DEBUG opendrift.models.physics_methods:1058: min: 6.070300, mean: 7.695693, max: 8.500243 14:50:47 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:50:47 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.017339, dN_50: 0.001361 14:50:47 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:50:47 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.03571117532455586 14:50:47 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:50:47 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:50:47 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:50:47 DEBUG opendrift.models.physics_methods:912: Advecting 105 of 5667 elements above 0.100m with wind-sheared ocean current (0.008524 m/s - 0.264251 m/s) 14:50:47 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:50:47 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.002560213012773573 and 0.48901955650165196 m/s 14:50:47 DEBUG opendrift.models.basemodel:2097: 5667 active elements (333 deactivated) 14:50:47 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:50:47 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:50:47 INFO opendrift.models.basemodel:2011: 2024-04-24 12:42:41.057477 - step 71 of 120 - 5667 active elements (333 deactivated) 14:50:47 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:50:47 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:50:47 DEBUG opendrift.models.basemodel:2030: 34.89347956019953 <- latitude -> 35.61352520375544 14:50:47 DEBUG opendrift.models.basemodel:2035: 23.149282221519005 <- longitude -> 23.585699421398203 14:50:47 DEBUG opendrift.models.basemodel:2040: -91.67540818862251 <- z -> 0.0 14:50:47 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:50:47 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:50:47 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:50:47 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:50:47 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:50:47 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:50:47 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5667 elements 14:50:47 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5667 elements 14:50:47 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:50:47 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:50:47 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:50:47 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:50:47 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:50:47 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:50:47 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:50:47 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:50:47 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5667 elements 14:50:47 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5667 elements 14:50:47 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:50:47 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:50:47 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:50:47 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:50:47 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:50:47 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:50:47 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:50:47 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:50:47 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:50:47 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5667 elements 14:50:47 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5667 elements 14:50:47 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:50:47 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-24 12:00:00 (before) 2024-04-24 15:00:00 (after) 14:50:47 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity 14:50:57 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_sea_water_velocity to retrieve y_sea_water_velocity 14:51:03 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:51:03 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values 14:51:03 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values 14:51:03 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity'] 14:51:03 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 13x26x21) for time after (2024-04-24 15:00:00) 14:51:03 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-24 12:00:00) in space (linearNDFast) 14:51:03 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:03 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-24 15:00:00) in space (linearNDFast) 14:51:03 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1200 elements, expanding data 1 14:51:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1200 elements, expanding data 1 14:51:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1200 elements, expanding data 1 14:51:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1200 elements, expanding data 1 14:51:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1200 elements, expanding data 1 14:51:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1200 elements, expanding data 1 14:51:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1200 elements, expanding data 1 14:51:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1200 elements, expanding data 1 14:51:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1200 elements, expanding data 1 14:51:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1200 elements, expanding data 1 14:51:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1200 elements, expanding data 1 14:51:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1200 elements, expanding data 1 14:51:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1200 elements, expanding data 1 14:51:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1200 elements, expanding data 1 14:51:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1200 elements, expanding data 1 14:51:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1200 elements, expanding data 1 14:51:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1200 elements, expanding data 1 14:51:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1200 elements, expanding data 1 14:51:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1200 elements, expanding data 1 14:51:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1200 elements, expanding data 1 14:51:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1200 elements, expanding data 1 14:51:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1200 elements, expanding data 1 14:51:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1200 elements, expanding data 1 14:51:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1200 elements, expanding data 1 14:51:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1200 elements, expanding data 1 14:51:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1200 elements, expanding data 1 14:51:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1200 elements, expanding data 1 14:51:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1200 elements, expanding data 1 14:51:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1200 elements, expanding data 1 14:51:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1200 elements, expanding data 1 14:51:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1200 elements, expanding data 1 14:51:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1200 elements, expanding data 1 14:51:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1200 elements, expanding data 1 14:51:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1200 elements, expanding data 1 14:51:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1200 elements, expanding data 1 14:51:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1200 elements, expanding data 1 14:51:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1200 elements, expanding data 1 14:51:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1200 elements, expanding data 1 14:51:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1200 elements, expanding data 1 14:51:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1200 elements, expanding data 1 14:51:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1200 elements, expanding data 1 14:51:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1200 elements, expanding data 1 14:51:03 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-24 12:00:00, weight 0.76) and after (2024-04-24 15:00:00, weight 0.24) in time 14:51:03 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:03 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:03 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:03 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:51:03 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51: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 14:51:03 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:03 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5667 elements 14:51: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 5667 elements 14:51:03 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:51:03 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-24 12:00:00 (before) 2024-04-24 15:00:00 (after) 14:51:03 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_wind to retrieve x_wind 14:51:03 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_wind to retrieve y_wind 14:51:04 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:51:04 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values 14:51:04 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values 14:51:04 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 7x8x1) for time after (2024-04-24 15:00:00) 14:51:04 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-24 12:00:00) in space (linearNDFast) 14:51:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:04 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-24 15:00:00) in space (linearNDFast) 14:51:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:04 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-24 12:00:00, weight 0.76) and after (2024-04-24 15:00:00, weight 0.24) in time 14:51:04 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:04 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:04 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:51:04 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:51: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'] 14:51:04 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:51:04 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:51:04 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:51:04 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:51:04 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.302741 (min) 0.166508 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.583075 (min) -0.0100707 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:905: x_wind: 6.7857 (min) 8.55901 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:905: y_wind: -6.60705 (min) -1.37795 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:51:04 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.198102, mean: 1.983537, max: 2.397620 14:51:04 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:51:04 DEBUG opendrift.models.physics_methods:1058: min: 5.963161, mean: 7.646989, max: 8.435673 14:51:04 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 5.963161, mean: 7.646989, max: 8.435673 14:51:04 DEBUG opendrift.models.basemodel:1667: 16 elements scheduled for deactivation (stranded) 14:51:04 DEBUG opendrift.models.basemodel:1669: (z: -12.903744 to 0.000000) 14:51:04 DEBUG opendrift.models.basemodel:1687: Removed 16 elements. 14:51:04 DEBUG opendrift.models.basemodel:1690: Removed 16 values from environment. 14:51:04 DEBUG opendrift.models.basemodel:1695: remove items from profile for z 14:51:04 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_temperature 14:51:04 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_salinity 14:51:04 DEBUG opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity 14:51:04 DEBUG opendrift.models.basemodel:1699: Removed 16 values from environment_profiles. 14:51:04 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:51:04 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:51:04 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:51:04 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:51:04 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:51:04 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:51:04 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:51:04 DEBUG opendrift.models.physics_methods:1058: min: 5.963161, mean: 7.650164, max: 8.435673 14:51:04 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:51:04 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.017906, dN_50: 0.001405 14:51:04 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:51:04 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.03517075146131741 14:51:04 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:51:04 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:51:04 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:51:04 DEBUG opendrift.models.physics_methods:912: Advecting 106 of 5651 elements above 0.100m with wind-sheared ocean current (0.031080 m/s - 0.263770 m/s) 14:51:04 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:51:04 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0016149133625808958 and 0.4582274039001227 m/s 14:51:04 DEBUG opendrift.models.basemodel:2097: 5651 active elements (349 deactivated) 14:51:04 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:51:04 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:51:04 INFO opendrift.models.basemodel:2011: 2024-04-24 13:42:41.057477 - step 72 of 120 - 5651 active elements (349 deactivated) 14:51:04 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:51:04 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:51:04 DEBUG opendrift.models.basemodel:2030: 34.88964412525056 <- latitude -> 35.60287446519472 14:51:04 DEBUG opendrift.models.basemodel:2035: 23.14486691054503 <- longitude -> 23.589103560724727 14:51:04 DEBUG opendrift.models.basemodel:2040: -90.65686653153199 <- z -> 0.0 14:51:04 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:51:04 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:04 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:51:04 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51:04 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:51:04 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:04 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5651 elements 14:51:04 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5651 elements 14:51:04 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:51:04 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:04 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:04 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:04 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:51:04 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51:04 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:51:04 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:04 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5651 elements 14:51:04 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5651 elements 14:51:04 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:51:04 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:51:04 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:04 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:04 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:04 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:51:04 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51:04 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:51:04 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:04 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5651 elements 14:51:04 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5651 elements 14:51:04 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:51:04 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-24 12:00:00 (before) 2024-04-24 15:00:00 (after) 14:51:04 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-24 12:00:00) in space (linearNDFast) 14:51:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:04 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-24 15:00:00) in space (linearNDFast) 14:51:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:04 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-24 12:00:00, weight 0.43) and after (2024-04-24 15:00:00, weight 0.57) in time 14:51:04 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:04 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:04 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:04 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:51:04 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51: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 14:51:04 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:04 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5651 elements 14:51: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 5651 elements 14:51:04 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:51:04 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-24 12:00:00 (before) 2024-04-24 15:00:00 (after) 14:51:04 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-24 12:00:00) in space (linearNDFast) 14:51:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:04 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-24 15:00:00) in space (linearNDFast) 14:51:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:04 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-24 12:00:00, weight 0.43) and after (2024-04-24 15:00:00, weight 0.57) in time 14:51:04 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:04 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:04 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:51:04 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:51: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'] 14:51:04 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:51:04 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:51:04 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:51:04 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:51:04 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.3246 (min) 0.104114 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.589121 (min) -0.00534928 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:905: x_wind: 6.60396 (min) 8.30358 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:905: y_wind: -6.27483 (min) -0.997957 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:51:04 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.103752, mean: 1.914044, max: 2.322672 14:51:04 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:51:04 DEBUG opendrift.models.physics_methods:1058: min: 5.723548, mean: 7.509312, max: 8.302780 14:51:04 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 5.723548, mean: 7.509312, max: 8.302780 14:51:04 DEBUG opendrift.models.basemodel:1667: 15 elements scheduled for deactivation (stranded) 14:51:04 DEBUG opendrift.models.basemodel:1669: (z: -9.418776 to 0.000000) 14:51:04 DEBUG opendrift.models.basemodel:1687: Removed 15 elements. 14:51:04 DEBUG opendrift.models.basemodel:1690: Removed 15 values from environment. 14:51:04 DEBUG opendrift.models.basemodel:1695: remove items from profile for z 14:51:04 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_temperature 14:51:04 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_salinity 14:51:04 DEBUG opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity 14:51:04 DEBUG opendrift.models.basemodel:1699: Removed 15 values from environment_profiles. 14:51:04 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:51:04 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:51:04 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:51:04 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:51:04 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:51:04 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:51:04 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:51:04 DEBUG opendrift.models.physics_methods:1058: min: 5.723548, mean: 7.512584, max: 8.302780 14:51:04 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:51:04 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.018671, dN_50: 0.001465 14:51:04 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:51:04 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.034071478871942736 14:51:04 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:51:04 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:51:04 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:51:04 DEBUG opendrift.models.physics_methods:912: Advecting 103 of 5636 elements above 0.100m with wind-sheared ocean current (0.000557 m/s - 0.260085 m/s) 14:51:04 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:51:04 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0017390758542757414 and 0.4409152413072243 m/s 14:51:04 DEBUG opendrift.models.basemodel:2097: 5636 active elements (364 deactivated) 14:51:04 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:51:04 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:51:04 INFO opendrift.models.basemodel:2011: 2024-04-24 14:42:41.057477 - step 73 of 120 - 5636 active elements (364 deactivated) 14:51:04 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:51:04 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:51:04 DEBUG opendrift.models.basemodel:2030: 34.88729527014848 <- latitude -> 35.58547401618549 14:51:04 DEBUG opendrift.models.basemodel:2035: 23.142072260913274 <- longitude -> 23.58657634865287 14:51:04 DEBUG opendrift.models.basemodel:2040: -89.66428640355348 <- z -> 0.0 14:51:04 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:51:04 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:04 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:51:04 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51:04 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:51:04 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:04 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5636 elements 14:51:04 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5636 elements 14:51:04 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:51:04 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:04 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:04 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:04 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:51:04 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51:04 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:51:04 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:04 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5636 elements 14:51:04 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5636 elements 14:51:04 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:51:04 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:51:04 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:04 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:04 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:04 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:51:04 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51:04 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:51:04 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:04 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5636 elements 14:51:04 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5636 elements 14:51:04 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:51:04 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-24 12:00:00 (before) 2024-04-24 15:00:00 (after) 14:51:04 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-24 12:00:00) in space (linearNDFast) 14:51:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:04 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-24 15:00:00) in space (linearNDFast) 14:51:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:04 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-24 12:00:00, weight 0.10) and after (2024-04-24 15:00:00, weight 0.90) in time 14:51:04 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:04 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:04 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:04 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:51:04 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51: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 14:51:04 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:04 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5636 elements 14:51: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 5636 elements 14:51:04 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:51:04 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-24 12:00:00 (before) 2024-04-24 15:00:00 (after) 14:51:04 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-24 12:00:00) in space (linearNDFast) 14:51:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:04 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-24 15:00:00) in space (linearNDFast) 14:51:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:04 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-24 12:00:00, weight 0.10) and after (2024-04-24 15:00:00, weight 0.90) in time 14:51:04 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:04 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:04 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:51:04 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:51: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'] 14:51:04 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:51:04 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:51:04 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:51:04 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:51:04 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.415172 (min) 0.0510202 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.600498 (min) 0.0108437 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:905: x_wind: 6.37838 (min) 8.3011 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:905: y_wind: -5.89085 (min) -0.690133 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:51:04 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:51:04 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.013765, mean: 1.855701, max: 2.240768 14:51:04 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:51:04 DEBUG opendrift.models.physics_methods:1058: min: 5.485274, mean: 7.391380, max: 8.155077 14:51:04 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 5.485274, mean: 7.391380, max: 8.155077 14:51:04 DEBUG opendrift.models.basemodel:1667: 5 elements scheduled for deactivation (stranded) 14:51:04 DEBUG opendrift.models.basemodel:1669: (z: -17.588699 to 0.000000) 14:51:04 DEBUG opendrift.models.basemodel:1687: Removed 5 elements. 14:51:04 DEBUG opendrift.models.basemodel:1690: Removed 5 values from environment. 14:51:04 DEBUG opendrift.models.basemodel:1695: remove items from profile for z 14:51:04 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_temperature 14:51:04 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_salinity 14:51:04 DEBUG opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity 14:51:04 DEBUG opendrift.models.basemodel:1699: Removed 5 values from environment_profiles. 14:51:04 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:51:04 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:51:04 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:51:04 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:51:04 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:51:04 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:51:04 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:51:04 DEBUG opendrift.models.physics_methods:1058: min: 5.485274, mean: 7.392211, max: 8.155077 14:51:04 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:51:04 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.019430, dN_50: 0.001525 14:51:04 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:51:04 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.03287017146490173 14:51:04 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:51:04 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:51:04 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:51:04 DEBUG opendrift.models.physics_methods:912: Advecting 106 of 5631 elements above 0.100m with wind-sheared ocean current (0.115356 m/s - 0.256264 m/s) 14:51:04 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:51:04 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0038658249787568333 and 0.49013401583356336 m/s 14:51:04 DEBUG opendrift.models.basemodel:2097: 5631 active elements (369 deactivated) 14:51:04 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:51:04 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:51:04 INFO opendrift.models.basemodel:2011: 2024-04-24 15:42:41.057477 - step 74 of 120 - 5631 active elements (369 deactivated) 14:51:04 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:51:04 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:51:04 DEBUG opendrift.models.basemodel:2030: 34.88456204850214 <- latitude -> 35.570734116854744 14:51:04 DEBUG opendrift.models.basemodel:2035: 23.125862945762485 <- longitude -> 23.58287074919276 14:51:04 DEBUG opendrift.models.basemodel:2040: -88.2366851260531 <- z -> 0.0 14:51:04 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:51:04 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:04 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:51:04 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51:04 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:51:04 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:04 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5631 elements 14:51:04 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5631 elements 14:51:04 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:51:04 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:04 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:04 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:04 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:51:04 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51:04 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:51:04 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:04 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5631 elements 14:51:04 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5631 elements 14:51:04 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:51:04 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:51:04 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:04 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:04 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:04 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:51:04 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51:04 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:51:04 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:04 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5631 elements 14:51:04 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5631 elements 14:51:04 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:51:04 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-24 15:00:00 (before) 2024-04-24 18:00:00 (after) 14:51:04 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity 14:51:11 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_sea_water_velocity to retrieve y_sea_water_velocity 14:51:19 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:51:19 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values 14:51:19 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values 14:51:19 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity'] 14:51:19 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 13x25x20) for time after (2024-04-24 18:00:00) 14:51:19 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-24 15:00:00) in space (linearNDFast) 14:51:19 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:19 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-24 18:00:00) in space (linearNDFast) 14:51:19 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 924 elements, expanding data 1 14:51:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 924 elements, expanding data 1 14:51:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 924 elements, expanding data 1 14:51:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 924 elements, expanding data 1 14:51:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 924 elements, expanding data 1 14:51:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 924 elements, expanding data 1 14:51:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 924 elements, expanding data 1 14:51:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 924 elements, expanding data 1 14:51:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 924 elements, expanding data 1 14:51:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 924 elements, expanding data 1 14:51:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 924 elements, expanding data 1 14:51:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 924 elements, expanding data 1 14:51:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 924 elements, expanding data 1 14:51:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 924 elements, expanding data 1 14:51:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 924 elements, expanding data 1 14:51:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 924 elements, expanding data 1 14:51:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 924 elements, expanding data 1 14:51:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 924 elements, expanding data 1 14:51:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 924 elements, expanding data 1 14:51:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 924 elements, expanding data 1 14:51:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 924 elements, expanding data 1 14:51:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 924 elements, expanding data 1 14:51:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 924 elements, expanding data 1 14:51:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 924 elements, expanding data 1 14:51:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 924 elements, expanding data 1 14:51:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 924 elements, expanding data 1 14:51:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 924 elements, expanding data 1 14:51:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 924 elements, expanding data 1 14:51:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 924 elements, expanding data 1 14:51:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 924 elements, expanding data 1 14:51:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 924 elements, expanding data 1 14:51:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 924 elements, expanding data 1 14:51:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 924 elements, expanding data 1 14:51:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 924 elements, expanding data 1 14:51:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 924 elements, expanding data 1 14:51:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 924 elements, expanding data 1 14:51:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 924 elements, expanding data 1 14:51:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 924 elements, expanding data 1 14:51:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 924 elements, expanding data 1 14:51:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 924 elements, expanding data 1 14:51:19 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-24 15:00:00, weight 0.76) and after (2024-04-24 18:00:00, weight 0.24) in time 14:51:19 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:19 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:19 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:19 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:51:19 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51: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 14:51:19 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:19 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5631 elements 14:51: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 5631 elements 14:51:19 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:51:19 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-24 15:00:00 (before) 2024-04-24 18:00:00 (after) 14:51:19 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_wind to retrieve x_wind 14:51:20 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_wind to retrieve y_wind 14:51:20 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:51:20 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values 14:51:20 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values 14:51:20 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 7x8x1) for time after (2024-04-24 18:00:00) 14:51:20 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-24 15:00:00) in space (linearNDFast) 14:51:20 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:20 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-24 18:00:00) in space (linearNDFast) 14:51:20 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:20 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-24 15:00:00, weight 0.76) and after (2024-04-24 18:00:00, weight 0.24) in time 14:51:20 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:20 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:20 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:51:20 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:51: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'] 14:51:20 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:51:20 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:51:20 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:51:20 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:51:20 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.48514 (min) 0.0279694 (max) 14:51:20 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.523174 (min) 0.033234 (max) 14:51:20 DEBUG opendrift.models.basemodel.environment:905: x_wind: 6.1257 (min) 8.28407 (max) 14:51:20 DEBUG opendrift.models.basemodel.environment:905: y_wind: -5.42081 (min) -0.294169 (max) 14:51:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:51:20 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:51:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:51:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:51:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:51:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:51:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:51:20 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:51:20 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:51:20 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:51:20 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:51:20 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:51:20 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:51:20 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:51:20 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max) 14:51:20 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:51:20 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:51:20 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.925225, mean: 1.731756, max: 2.066703 14:51:20 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:51:20 DEBUG opendrift.models.physics_methods:1058: min: 5.240266, mean: 7.141412, max: 7.831926 14:51:20 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 5.240266, mean: 7.141412, max: 7.831926 14:51:20 DEBUG opendrift.models.basemodel:1667: 9 elements scheduled for deactivation (stranded) 14:51:20 DEBUG opendrift.models.basemodel:1669: (z: 0.000000 to 0.000000) 14:51:20 DEBUG opendrift.models.basemodel:1687: Removed 9 elements. 14:51:20 DEBUG opendrift.models.basemodel:1690: Removed 9 values from environment. 14:51:20 DEBUG opendrift.models.basemodel:1695: remove items from profile for z 14:51:20 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_temperature 14:51:20 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_salinity 14:51:20 DEBUG opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity 14:51:20 DEBUG opendrift.models.basemodel:1699: Removed 9 values from environment_profiles. 14:51:20 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:51:20 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:51:20 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:51:20 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:51:20 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:51:20 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:51:20 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:51:20 DEBUG opendrift.models.physics_methods:1058: min: 5.240266, mean: 7.143835, max: 7.831926 14:51:20 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:51:20 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.020368, dN_50: 0.001598 14:51:20 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:51:20 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.030317104565228584 14:51:20 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:51:20 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:51:20 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:51:20 DEBUG opendrift.models.physics_methods:912: Advecting 106 of 5622 elements above 0.100m with wind-sheared ocean current (0.005226 m/s - 0.250135 m/s) 14:51:20 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:51:20 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0014836451675180622 and 0.43888457757937077 m/s 14:51:20 DEBUG opendrift.models.basemodel:2097: 5622 active elements (378 deactivated) 14:51:20 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:51:20 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:51:20 INFO opendrift.models.basemodel:2011: 2024-04-24 16:42:41.057477 - step 75 of 120 - 5622 active elements (378 deactivated) 14:51:20 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:51:20 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:51:20 DEBUG opendrift.models.basemodel:2030: 34.88638803406286 <- latitude -> 35.55950110327753 14:51:20 DEBUG opendrift.models.basemodel:2035: 23.114194514839376 <- longitude -> 23.597740727318605 14:51:20 DEBUG opendrift.models.basemodel:2040: -87.43559998383387 <- z -> 0.0 14:51:20 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:51:20 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:20 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:51:20 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51:20 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:51:20 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:20 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5622 elements 14:51:20 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5622 elements 14:51:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:51:20 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:20 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:20 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:20 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:51:20 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51:20 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:51:20 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:20 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5622 elements 14:51:20 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5622 elements 14:51:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:51:20 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:51:20 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:20 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:20 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:20 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:51:20 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51:20 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:51:20 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:20 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5622 elements 14:51:20 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5622 elements 14:51:20 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:51:20 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-24 15:00:00 (before) 2024-04-24 18:00:00 (after) 14:51:20 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-24 15:00:00) in space (linearNDFast) 14:51:20 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:20 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-24 18:00:00) in space (linearNDFast) 14:51:20 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:20 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-24 15:00:00, weight 0.43) and after (2024-04-24 18:00:00, weight 0.57) in time 14:51:20 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:20 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:20 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:20 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:51:20 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51: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 14:51:20 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:20 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5622 elements 14:51: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 5622 elements 14:51:20 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:51:20 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-24 15:00:00 (before) 2024-04-24 18:00:00 (after) 14:51:20 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-24 15:00:00) in space (linearNDFast) 14:51:20 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:20 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-24 18:00:00) in space (linearNDFast) 14:51:20 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:20 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-24 15:00:00, weight 0.43) and after (2024-04-24 18:00:00, weight 0.57) in time 14:51:20 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:20 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:20 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:51:20 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:51: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'] 14:51:20 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:51:20 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:51:20 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:51:20 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:51:20 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.521647 (min) 0.0170654 (max) 14:51:20 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.45227 (min) 0.0620577 (max) 14:51:20 DEBUG opendrift.models.basemodel.environment:905: x_wind: 5.84198 (min) 8.18923 (max) 14:51:20 DEBUG opendrift.models.basemodel.environment:905: y_wind: -4.9354 (min) 0.092903 (max) 14:51:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:51:20 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:51:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:51:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:51:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:51:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:51:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:51:20 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:51:20 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:51:20 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:51:20 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:51:20 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:51:20 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:51:20 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:51:20 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max) 14:51:20 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:51:20 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:51:20 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.839779, mean: 1.587474, max: 1.867960 14:51:20 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:51:20 DEBUG opendrift.models.physics_methods:1058: min: 4.992433, mean: 6.840077, max: 7.445833 14:51:20 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.992433, mean: 6.840077, max: 7.445833 14:51:20 DEBUG opendrift.models.basemodel:1667: 5 elements scheduled for deactivation (stranded) 14:51:20 DEBUG opendrift.models.basemodel:1669: (z: -6.669721 to 0.000000) 14:51:20 DEBUG opendrift.models.basemodel:1687: Removed 5 elements. 14:51:20 DEBUG opendrift.models.basemodel:1690: Removed 5 values from environment. 14:51:20 DEBUG opendrift.models.basemodel:1695: remove items from profile for z 14:51:20 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_temperature 14:51:20 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_salinity 14:51:20 DEBUG opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity 14:51:20 DEBUG opendrift.models.basemodel:1699: Removed 5 values from environment_profiles. 14:51:20 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:51:20 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:51:20 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:51:20 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:51:20 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:51:20 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:51:20 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:51:20 DEBUG opendrift.models.physics_methods:1058: min: 4.992433, mean: 6.841138, max: 7.445833 14:51:20 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:51:20 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.021404, dN_50: 0.001680 14:51:20 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:51:20 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.027402083948652203 14:51:20 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:51:20 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:51:20 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:51:20 DEBUG opendrift.models.physics_methods:912: Advecting 111 of 5617 elements above 0.100m with wind-sheared ocean current (0.002037 m/s - 0.252990 m/s) 14:51:20 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:51:20 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.001043268226417784 and 0.4348910969054111 m/s 14:51:20 DEBUG opendrift.models.basemodel:2097: 5617 active elements (383 deactivated) 14:51:20 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:51:20 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:51:20 INFO opendrift.models.basemodel:2011: 2024-04-24 17:42:41.057477 - step 76 of 120 - 5617 active elements (383 deactivated) 14:51:20 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:51:20 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:51:20 DEBUG opendrift.models.basemodel:2030: 34.89154580008236 <- latitude -> 35.55701091468079 14:51:20 DEBUG opendrift.models.basemodel:2035: 23.09510473274208 <- longitude -> 23.60856903870187 14:51:20 DEBUG opendrift.models.basemodel:2040: -85.82496309533741 <- z -> 0.0 14:51:20 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:51:20 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:20 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:51:20 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51:20 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:51:20 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:20 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5617 elements 14:51:20 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5617 elements 14:51:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:51:20 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:20 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:20 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:20 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:51:20 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51:20 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:51:20 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:20 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5617 elements 14:51:20 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5617 elements 14:51:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:51:20 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:51:20 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:20 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:20 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:20 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:51:20 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51:20 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:51:20 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:20 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5617 elements 14:51:20 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5617 elements 14:51:20 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:51:20 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-24 15:00:00 (before) 2024-04-24 18:00:00 (after) 14:51:20 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-24 15:00:00) in space (linearNDFast) 14:51:20 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:21 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-24 18:00:00) in space (linearNDFast) 14:51:21 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:21 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-24 15:00:00, weight 0.10) and after (2024-04-24 18:00:00, weight 0.90) in time 14:51:21 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:21 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:21 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:21 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:51:21 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51: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 14:51:21 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:21 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5617 elements 14:51: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 5617 elements 14:51:21 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:51:21 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-24 15:00:00 (before) 2024-04-24 18:00:00 (after) 14:51:21 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-24 15:00:00) in space (linearNDFast) 14:51:21 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:21 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-24 18:00:00) in space (linearNDFast) 14:51:21 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:21 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-24 15:00:00, weight 0.10) and after (2024-04-24 18:00:00, weight 0.90) in time 14:51:21 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:21 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:21 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:51:21 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:51: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'] 14:51:21 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:51:21 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:51:21 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:51:21 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:51:21 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.550125 (min) 0.00932604 (max) 14:51:21 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.355676 (min) 0.0876817 (max) 14:51:21 DEBUG opendrift.models.basemodel.environment:905: x_wind: 5.53586 (min) 8.07999 (max) 14:51:21 DEBUG opendrift.models.basemodel.environment:905: y_wind: -4.43947 (min) 0.472181 (max) 14:51:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:51:21 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:51:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:51:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:51:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:51:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:51:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:51:21 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:51:21 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:51:21 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:51:21 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:51:21 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:51:21 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:51:21 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:51:21 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max) 14:51:21 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:51:21 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:51:21 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.759370, mean: 1.452317, max: 1.763327 14:51:21 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:51:21 DEBUG opendrift.models.physics_methods:1058: min: 4.747406, mean: 6.544524, max: 7.234292 14:51:21 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.747406, mean: 6.544524, max: 7.234292 14:51:21 DEBUG opendrift.models.basemodel:1667: 4 elements scheduled for deactivation (stranded) 14:51:21 DEBUG opendrift.models.basemodel:1669: (z: -17.510677 to 0.000000) 14:51:21 DEBUG opendrift.models.basemodel:1687: Removed 4 elements. 14:51:21 DEBUG opendrift.models.basemodel:1690: Removed 4 values from environment. 14:51:21 DEBUG opendrift.models.basemodel:1695: remove items from profile for z 14:51:21 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_temperature 14:51:21 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_salinity 14:51:21 DEBUG opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity 14:51:21 DEBUG opendrift.models.basemodel:1699: Removed 4 values from environment_profiles. 14:51:21 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:51:21 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:51:21 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:51:21 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:51:21 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:51:21 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:51:21 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:51:21 DEBUG opendrift.models.physics_methods:1058: min: 4.823109, mean: 6.545646, max: 7.234292 14:51:21 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:51:21 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.022501, dN_50: 0.001766 14:51:21 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:51:21 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.025867406746625996 14:51:21 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:51:21 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:51:21 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:51:21 DEBUG opendrift.models.physics_methods:912: Advecting 116 of 5613 elements above 0.100m with wind-sheared ocean current (0.017765 m/s - 0.244387 m/s) 14:51:21 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:51:21 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0016911171679196172 and 0.46845395941710705 m/s 14:51:21 DEBUG opendrift.models.basemodel:2097: 5613 active elements (387 deactivated) 14:51:21 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:51:21 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:51:21 INFO opendrift.models.basemodel:2011: 2024-04-24 18:42:41.057477 - step 77 of 120 - 5613 active elements (387 deactivated) 14:51:21 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:51:21 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:51:21 DEBUG opendrift.models.basemodel:2030: 34.89459931822086 <- latitude -> 35.549646817611674 14:51:21 DEBUG opendrift.models.basemodel:2035: 23.076287764491735 <- longitude -> 23.607494020566193 14:51:21 DEBUG opendrift.models.basemodel:2040: -84.81052885041703 <- z -> 0.0 14:51:21 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:51:21 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:21 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:51:21 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51:21 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:51:21 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:21 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5613 elements 14:51:21 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5613 elements 14:51:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:51:21 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:21 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:21 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:21 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:51:21 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51:21 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:51:21 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:21 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5613 elements 14:51:21 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5613 elements 14:51:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:51:21 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:51:21 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:21 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:21 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:21 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:51:21 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51:21 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:51:21 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:21 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5613 elements 14:51:21 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5613 elements 14:51:21 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:51:21 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-24 18:00:00 (before) 2024-04-24 21:00:00 (after) 14:51:21 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity 14:51:27 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_sea_water_velocity to retrieve y_sea_water_velocity 14:51:32 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:51:32 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values 14:51:32 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values 14:51:32 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity'] 14:51:32 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 15x24x20) for time after (2024-04-24 21:00:00) 14:51:32 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-24 18:00:00) in space (linearNDFast) 14:51:32 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:32 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-24 21:00:00) in space (linearNDFast) 14:51:32 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 651 elements, expanding data 1 14:51:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 651 elements, expanding data 1 14:51:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 651 elements, expanding data 1 14:51:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 651 elements, expanding data 1 14:51:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 651 elements, expanding data 1 14:51:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 651 elements, expanding data 1 14:51:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 651 elements, expanding data 1 14:51:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 651 elements, expanding data 1 14:51:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 651 elements, expanding data 1 14:51:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 651 elements, expanding data 1 14:51:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 651 elements, expanding data 1 14:51:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 651 elements, expanding data 1 14:51:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 651 elements, expanding data 1 14:51:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 651 elements, expanding data 1 14:51:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 651 elements, expanding data 1 14:51:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 651 elements, expanding data 1 14:51:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 651 elements, expanding data 1 14:51:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 651 elements, expanding data 1 14:51:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 651 elements, expanding data 1 14:51:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 651 elements, expanding data 1 14:51:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 651 elements, expanding data 1 14:51:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 651 elements, expanding data 1 14:51:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 651 elements, expanding data 1 14:51:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 651 elements, expanding data 1 14:51:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 651 elements, expanding data 1 14:51:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 651 elements, expanding data 1 14:51:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 651 elements, expanding data 1 14:51:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 651 elements, expanding data 1 14:51:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 651 elements, expanding data 1 14:51:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 651 elements, expanding data 1 14:51:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 651 elements, expanding data 1 14:51:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 651 elements, expanding data 1 14:51:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 651 elements, expanding data 1 14:51:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 651 elements, expanding data 1 14:51:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 651 elements, expanding data 1 14:51:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 651 elements, expanding data 1 14:51:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 651 elements, expanding data 1 14:51:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 651 elements, expanding data 1 14:51:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 651 elements, expanding data 1 14:51:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 651 elements, expanding data 1 14:51:32 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-24 18:00:00, weight 0.76) and after (2024-04-24 21:00:00, weight 0.24) in time 14:51:32 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:32 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:32 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:32 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:51:32 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51:32 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd 14:51:32 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:32 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5613 elements 14:51:32 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 5613 elements 14:51:32 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:51:32 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-24 18:00:00 (before) 2024-04-24 21:00:00 (after) 14:51:32 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_wind to retrieve x_wind 14:51:32 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_wind to retrieve y_wind 14:51:32 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:51:32 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values 14:51:32 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values 14:51:32 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 7x8x1) for time after (2024-04-24 21:00:00) 14:51:32 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-24 18:00:00) in space (linearNDFast) 14:51:32 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:32 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-24 21:00:00) in space (linearNDFast) 14:51:32 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:32 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-24 18:00:00, weight 0.76) and after (2024-04-24 21:00:00, weight 0.24) in time 14:51:32 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:32 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:32 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:51:32 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:51:32 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'] 14:51:32 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:51:32 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:51:32 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:51:32 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:51:32 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.546287 (min) 0.00928047 (max) 14:51:32 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.291462 (min) 0.112167 (max) 14:51:32 DEBUG opendrift.models.basemodel.environment:905: x_wind: 5.51993 (min) 8.08668 (max) 14:51:32 DEBUG opendrift.models.basemodel.environment:905: y_wind: -4.04775 (min) 0.66515 (max) 14:51:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:51:32 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:51:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:51:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:51:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:51:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:51:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:51:32 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:51:32 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:51:32 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:51:32 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:51:32 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:51:32 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:51:32 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:51:32 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max) 14:51:32 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:51:32 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:51:32 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.755356, mean: 1.391809, max: 1.749883 14:51:32 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:51:32 DEBUG opendrift.models.physics_methods:1058: min: 4.734840, mean: 6.408779, max: 7.206660 14:51:32 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.734840, mean: 6.408779, max: 7.206660 14:51:32 DEBUG opendrift.models.basemodel:1667: 4 elements scheduled for deactivation (stranded) 14:51:32 DEBUG opendrift.models.basemodel:1669: (z: -12.120065 to 0.000000) 14:51:32 DEBUG opendrift.models.basemodel:1687: Removed 4 elements. 14:51:32 DEBUG opendrift.models.basemodel:1690: Removed 4 values from environment. 14:51:32 DEBUG opendrift.models.basemodel:1695: remove items from profile for z 14:51:32 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_temperature 14:51:32 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_salinity 14:51:32 DEBUG opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity 14:51:32 DEBUG opendrift.models.basemodel:1699: Removed 4 values from environment_profiles. 14:51:32 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:51:32 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:51:32 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:51:32 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:51:32 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:51:32 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:51:32 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:51:32 DEBUG opendrift.models.physics_methods:1058: min: 4.734840, mean: 6.409451, max: 7.206660 14:51:32 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:51:32 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.023291, dN_50: 0.001828 14:51:32 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:51:32 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.025670217348557962 14:51:32 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:51:32 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:51:32 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:51:32 DEBUG opendrift.models.physics_methods:912: Advecting 114 of 5609 elements above 0.100m with wind-sheared ocean current (0.023823 m/s - 0.241124 m/s) 14:51:32 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:51:33 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0030426597787632493 and 0.4000682459883797 m/s 14:51:33 DEBUG opendrift.models.basemodel:2097: 5609 active elements (391 deactivated) 14:51:33 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:51:33 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:51:33 INFO opendrift.models.basemodel:2011: 2024-04-24 19:42:41.057477 - step 78 of 120 - 5609 active elements (391 deactivated) 14:51:33 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:51:33 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:51:33 DEBUG opendrift.models.basemodel:2030: 34.8893898477135 <- latitude -> 35.54308175749689 14:51:33 DEBUG opendrift.models.basemodel:2035: 23.058563605344695 <- longitude -> 23.61524939818534 14:51:33 DEBUG opendrift.models.basemodel:2040: -84.05664452886779 <- z -> 0.0 14:51:33 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:51:33 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:33 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:51:33 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51:33 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:51:33 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:33 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5609 elements 14:51:33 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5609 elements 14:51:33 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:51:33 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:33 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:33 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:33 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:51:33 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51:33 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:51:33 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:33 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5609 elements 14:51:33 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5609 elements 14:51:33 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:51:33 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:51:33 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:33 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:33 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:33 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:51:33 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51:33 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:51:33 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:33 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5609 elements 14:51:33 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5609 elements 14:51:33 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:51:33 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-24 18:00:00 (before) 2024-04-24 21:00:00 (after) 14:51:33 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-24 18:00:00) in space (linearNDFast) 14:51:33 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:33 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-24 21:00:00) in space (linearNDFast) 14:51:33 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:33 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-24 18:00:00, weight 0.43) and after (2024-04-24 21:00:00, weight 0.57) in time 14:51:33 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:33 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:33 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:33 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:51:33 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51: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 14:51:33 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:33 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5609 elements 14:51: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 5609 elements 14:51:33 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:51:33 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-24 18:00:00 (before) 2024-04-24 21:00:00 (after) 14:51:33 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-24 18:00:00) in space (linearNDFast) 14:51:33 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:33 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-24 21:00:00) in space (linearNDFast) 14:51:33 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:33 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-24 18:00:00, weight 0.43) and after (2024-04-24 21:00:00, weight 0.57) in time 14:51:33 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:33 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:33 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:51:33 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:51: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'] 14:51:33 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:51:33 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:51:33 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:51:33 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:51:33 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.532794 (min) 0.0186184 (max) 14:51:33 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.230933 (min) 0.140843 (max) 14:51:33 DEBUG opendrift.models.basemodel.environment:905: x_wind: 5.43594 (min) 8.12626 (max) 14:51:33 DEBUG opendrift.models.basemodel.environment:905: y_wind: -3.65576 (min) 0.765968 (max) 14:51:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:51:33 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:51:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:51:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:51:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:51:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:51:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:51:33 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:51:33 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:51:33 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:51:33 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:51:33 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:51:33 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:51:33 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:51:33 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max) 14:51:33 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:51:33 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:51:33 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.737006, mean: 1.361086, max: 1.758484 14:51:33 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:51:33 DEBUG opendrift.models.physics_methods:1058: min: 4.676977, mean: 6.339342, max: 7.224350 14:51:33 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.676977, mean: 6.339342, max: 7.224350 14:51:33 DEBUG opendrift.models.basemodel:1667: 5 elements scheduled for deactivation (stranded) 14:51:33 DEBUG opendrift.models.basemodel:1669: (z: -19.615748 to 0.000000) 14:51:33 DEBUG opendrift.models.basemodel:1687: Removed 5 elements. 14:51:33 DEBUG opendrift.models.basemodel:1690: Removed 5 values from environment. 14:51:33 DEBUG opendrift.models.basemodel:1695: remove items from profile for z 14:51:33 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_temperature 14:51:33 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_salinity 14:51:33 DEBUG opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity 14:51:33 DEBUG opendrift.models.basemodel:1699: Removed 5 values from environment_profiles. 14:51:33 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:51:33 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:51:33 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:51:33 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:51:33 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:51:33 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:51:33 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:51:33 DEBUG opendrift.models.physics_methods:1058: min: 4.676977, mean: 6.340226, max: 7.224349 14:51:33 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:51:33 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.023938, dN_50: 0.001879 14:51:33 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:51:33 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.025796365608587342 14:51:33 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:51:33 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:51:33 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:51:33 DEBUG opendrift.models.physics_methods:912: Advecting 118 of 5604 elements above 0.100m with wind-sheared ocean current (0.012158 m/s - 0.240139 m/s) 14:51:33 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:51:33 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0018683046376779399 and 0.46525952692057726 m/s 14:51:33 DEBUG opendrift.models.basemodel:2097: 5604 active elements (396 deactivated) 14:51:33 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:51:33 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:51:33 INFO opendrift.models.basemodel:2011: 2024-04-24 20:42:41.057477 - step 79 of 120 - 5604 active elements (396 deactivated) 14:51:33 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:51:33 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:51:33 DEBUG opendrift.models.basemodel:2030: 34.889719392568836 <- latitude -> 35.53931301265466 14:51:33 DEBUG opendrift.models.basemodel:2035: 23.039006486559433 <- longitude -> 23.624327607647448 14:51:33 DEBUG opendrift.models.basemodel:2040: -83.30621944144616 <- z -> 0.0 14:51:33 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:51:33 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:33 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:51:33 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51:33 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:51:33 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:33 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5604 elements 14:51:33 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5604 elements 14:51:33 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:51:33 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:33 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:33 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:33 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:51:33 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51:33 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:51:33 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:33 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5604 elements 14:51:33 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5604 elements 14:51:33 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:51:33 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:51:33 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:33 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:33 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:33 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:51:33 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51:33 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:51:33 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:33 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5604 elements 14:51:33 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5604 elements 14:51:33 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:51:33 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-24 18:00:00 (before) 2024-04-24 21:00:00 (after) 14:51:33 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-24 18:00:00) in space (linearNDFast) 14:51:33 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:33 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-24 21:00:00) in space (linearNDFast) 14:51:33 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:33 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-24 18:00:00, weight 0.10) and after (2024-04-24 21:00:00, weight 0.90) in time 14:51:33 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:33 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:33 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:33 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:51:33 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51: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 14:51:33 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:33 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5604 elements 14:51: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 5604 elements 14:51:33 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:51:33 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-24 18:00:00 (before) 2024-04-24 21:00:00 (after) 14:51:33 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-24 18:00:00) in space (linearNDFast) 14:51:33 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:33 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-24 21:00:00) in space (linearNDFast) 14:51:33 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:33 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-24 18:00:00, weight 0.10) and after (2024-04-24 21:00:00, weight 0.90) in time 14:51:33 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:33 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:33 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:51:33 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:51: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'] 14:51:33 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:51:33 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:51:33 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:51:33 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:51:33 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.513865 (min) 0.0274899 (max) 14:51:33 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.18763 (min) 0.17548 (max) 14:51:33 DEBUG opendrift.models.basemodel.environment:905: x_wind: 5.3611 (min) 8.15568 (max) 14:51:33 DEBUG opendrift.models.basemodel.environment:905: y_wind: -3.29631 (min) 0.868125 (max) 14:51:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:51:33 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:51:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:51:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:51:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:51:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:51:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:51:33 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:51:33 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:51:33 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:51:33 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:51:33 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:51:33 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:51:33 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:51:33 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max) 14:51:33 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:51:33 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:51:33 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.722034, mean: 1.332856, max: 1.763220 14:51:33 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:51:33 DEBUG opendrift.models.physics_methods:1058: min: 4.629225, mean: 6.274536, max: 7.234073 14:51:33 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.629225, mean: 6.274536, max: 7.234073 14:51:33 DEBUG opendrift.models.basemodel:1667: 3 elements scheduled for deactivation (stranded) 14:51:33 DEBUG opendrift.models.basemodel:1669: (z: 0.000000 to 0.000000) 14:51:33 DEBUG opendrift.models.basemodel:1687: Removed 3 elements. 14:51:33 DEBUG opendrift.models.basemodel:1690: Removed 3 values from environment. 14:51:33 DEBUG opendrift.models.basemodel:1695: remove items from profile for z 14:51:33 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_temperature 14:51:33 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_salinity 14:51:33 DEBUG opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity 14:51:33 DEBUG opendrift.models.basemodel:1699: Removed 3 values from environment_profiles. 14:51:33 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:51:33 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:51:33 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:51:33 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:51:33 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:51:33 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:51:33 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:51:33 DEBUG opendrift.models.physics_methods:1058: min: 4.629225, mean: 6.274895, max: 7.234073 14:51:33 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:51:33 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.024601, dN_50: 0.001931 14:51:33 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:51:33 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.025865837848044002 14:51:33 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:51:33 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:51:33 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:51:33 DEBUG opendrift.models.physics_methods:912: Advecting 120 of 5601 elements above 0.100m with wind-sheared ocean current (0.023009 m/s - 0.241750 m/s) 14:51:33 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:51:33 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0007887119560535699 and 0.46006156287024486 m/s 14:51:33 DEBUG opendrift.models.basemodel:2097: 5601 active elements (399 deactivated) 14:51:33 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:51:33 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:51:33 INFO opendrift.models.basemodel:2011: 2024-04-24 21:42:41.057477 - step 80 of 120 - 5601 active elements (399 deactivated) 14:51:33 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:51:33 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:51:33 DEBUG opendrift.models.basemodel:2030: 34.88926317760854 <- latitude -> 35.539727056435005 14:51:33 DEBUG opendrift.models.basemodel:2035: 23.011726452195767 <- longitude -> 23.63401003637294 14:51:33 DEBUG opendrift.models.basemodel:2040: -83.10590047212757 <- z -> 0.0 14:51:33 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:51:33 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:33 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:51:33 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51:33 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:51:33 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:33 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5601 elements 14:51:33 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5601 elements 14:51:33 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:51:33 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:33 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:33 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:33 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:51:33 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51:33 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:51:33 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:33 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5601 elements 14:51:33 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5601 elements 14:51:33 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:51:33 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:51:33 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:33 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:33 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:33 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:51:33 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51:33 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:51:33 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:33 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5601 elements 14:51:33 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5601 elements 14:51:33 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:51:33 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-24 21:00:00 (before) 2024-04-25 00:00:00 (after) 14:51:33 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity 14:51:36 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_sea_water_velocity to retrieve y_sea_water_velocity 14:51:43 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:51:43 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values 14:51:43 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values 14:51:43 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity'] 14:51:43 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 16x24x20) for time after (2024-04-25 00:00:00) 14:51:43 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-24 21:00:00) in space (linearNDFast) 14:51:43 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:43 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-25 00:00:00) in space (linearNDFast) 14:51:43 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 467 elements, expanding data 1 14:51:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 467 elements, expanding data 1 14:51:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 467 elements, expanding data 1 14:51:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 467 elements, expanding data 1 14:51:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 467 elements, expanding data 1 14:51:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 467 elements, expanding data 1 14:51:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 467 elements, expanding data 1 14:51:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 467 elements, expanding data 1 14:51:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 467 elements, expanding data 1 14:51:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 467 elements, expanding data 1 14:51:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 467 elements, expanding data 1 14:51:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 467 elements, expanding data 1 14:51:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 467 elements, expanding data 1 14:51:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 467 elements, expanding data 1 14:51:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 467 elements, expanding data 1 14:51:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 467 elements, expanding data 1 14:51:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 467 elements, expanding data 1 14:51:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 467 elements, expanding data 1 14:51:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 467 elements, expanding data 1 14:51:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 467 elements, expanding data 1 14:51:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 467 elements, expanding data 1 14:51:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 467 elements, expanding data 1 14:51:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 467 elements, expanding data 1 14:51:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 467 elements, expanding data 1 14:51:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 467 elements, expanding data 1 14:51:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 467 elements, expanding data 1 14:51:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 467 elements, expanding data 1 14:51:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 467 elements, expanding data 1 14:51:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 467 elements, expanding data 1 14:51:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 467 elements, expanding data 1 14:51:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 467 elements, expanding data 1 14:51:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 467 elements, expanding data 1 14:51:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 467 elements, expanding data 1 14:51:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 467 elements, expanding data 1 14:51:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 467 elements, expanding data 1 14:51:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 467 elements, expanding data 1 14:51:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 467 elements, expanding data 1 14:51:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 467 elements, expanding data 1 14:51:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 467 elements, expanding data 1 14:51:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 467 elements, expanding data 1 14:51:43 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-24 21:00:00, weight 0.76) and after (2024-04-25 00:00:00, weight 0.24) in time 14:51:43 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:43 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:43 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:43 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:51:43 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51: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 14:51:43 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:43 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5601 elements 14:51: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 5601 elements 14:51:43 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:51:43 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-24 21:00:00 (before) 2024-04-25 00:00:00 (after) 14:51:43 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_wind to retrieve x_wind 14:51:43 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_wind to retrieve y_wind 14:51:44 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:51:44 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values 14:51:44 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values 14:51:44 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 7x8x1) for time after (2024-04-25 00:00:00) 14:51:44 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-24 21:00:00) in space (linearNDFast) 14:51:44 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:44 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-25 00:00:00) in space (linearNDFast) 14:51:44 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:44 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-24 21:00:00, weight 0.76) and after (2024-04-25 00:00:00, weight 0.24) in time 14:51:44 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:44 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:44 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:51:44 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:51:44 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'] 14:51:44 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:51:44 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:51:44 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:51:44 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:51:44 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.454368 (min) 0.0395616 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.151635 (min) 0.185982 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:905: x_wind: 5.26508 (min) 7.92539 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:905: y_wind: -3.13515 (min) 0.849817 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:51:44 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.699705, mean: 1.275792, max: 1.666511 14:51:44 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:51:44 DEBUG opendrift.models.physics_methods:1058: min: 4.557085, mean: 6.141282, max: 7.032888 14:51:44 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.557085, mean: 6.141282, max: 7.032888 14:51:44 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:51:44 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:51:44 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:51:44 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:51:44 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:51:44 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:51:44 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:51:44 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:51:44 DEBUG opendrift.models.physics_methods:1058: min: 4.557085, mean: 6.141282, max: 7.032888 14:51:44 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:51:44 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.025408, dN_50: 0.001994 14:51:44 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:51:44 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.024447386063217905 14:51:44 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:51:44 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:51:44 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:51:44 DEBUG opendrift.models.physics_methods:912: Advecting 124 of 5601 elements above 0.100m with wind-sheared ocean current (0.008653 m/s - 0.235076 m/s) 14:51:44 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:51:44 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0008272030684305304 and 0.43344924306221894 m/s 14:51:44 DEBUG opendrift.models.basemodel:2097: 5601 active elements (399 deactivated) 14:51:44 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:51:44 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:51:44 INFO opendrift.models.basemodel:2011: 2024-04-24 22:42:41.057477 - step 81 of 120 - 5601 active elements (399 deactivated) 14:51:44 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:51:44 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:51:44 DEBUG opendrift.models.basemodel:2030: 34.890494807108205 <- latitude -> 35.54168539842558 14:51:44 DEBUG opendrift.models.basemodel:2035: 22.991843148866156 <- longitude -> 23.64706442238577 14:51:44 DEBUG opendrift.models.basemodel:2040: -82.12281542459576 <- z -> 0.0 14:51:44 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:51:44 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:44 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:51:44 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51:44 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:51:44 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:44 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5601 elements 14:51:44 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5601 elements 14:51:44 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:51:44 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:44 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:44 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:44 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:51:44 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51:44 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:51:44 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:44 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5601 elements 14:51:44 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5601 elements 14:51:44 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:51:44 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:51:44 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:44 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:44 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:44 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:51:44 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51:44 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:51:44 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:44 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5601 elements 14:51:44 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5601 elements 14:51:44 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:51:44 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-24 21:00:00 (before) 2024-04-25 00:00:00 (after) 14:51:44 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-24 21:00:00) in space (linearNDFast) 14:51:44 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:44 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-25 00:00:00) in space (linearNDFast) 14:51:44 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:44 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-24 21:00:00, weight 0.43) and after (2024-04-25 00:00:00, weight 0.57) in time 14:51:44 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:44 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:44 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:44 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:51:44 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51: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 14:51:44 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:44 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5601 elements 14:51: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 5601 elements 14:51:44 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:51:44 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-24 21:00:00 (before) 2024-04-25 00:00:00 (after) 14:51:44 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-24 21:00:00) in space (linearNDFast) 14:51:44 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:44 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-25 00:00:00) in space (linearNDFast) 14:51:44 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:44 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-24 21:00:00, weight 0.43) and after (2024-04-25 00:00:00, weight 0.57) in time 14:51:44 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:44 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:44 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:51:44 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:51:44 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'] 14:51:44 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:51:44 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:51:44 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:51:44 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:51:44 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.383332 (min) 0.0848287 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.136207 (min) 0.193927 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:905: x_wind: 5.24458 (min) 7.57997 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:905: y_wind: -3.02506 (min) 0.766102 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:51:44 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.690184, mean: 1.204660, max: 1.529679 14:51:44 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:51:44 DEBUG opendrift.models.physics_methods:1058: min: 4.525974, mean: 5.970444, max: 6.737979 14:51:44 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.525974, mean: 5.970444, max: 6.737979 14:51:44 DEBUG opendrift.models.basemodel:1667: 2 elements scheduled for deactivation (stranded) 14:51:44 DEBUG opendrift.models.basemodel:1669: (z: -10.731125 to 0.000000) 14:51:44 DEBUG opendrift.models.basemodel:1687: Removed 2 elements. 14:51:44 DEBUG opendrift.models.basemodel:1690: Removed 2 values from environment. 14:51:44 DEBUG opendrift.models.basemodel:1695: remove items from profile for z 14:51:44 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_temperature 14:51:44 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_salinity 14:51:44 DEBUG opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity 14:51:44 DEBUG opendrift.models.basemodel:1699: Removed 2 values from environment_profiles. 14:51:44 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:51:44 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:51:44 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:51:44 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:51:44 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:51:44 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:51:44 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:51:44 DEBUG opendrift.models.physics_methods:1058: min: 4.525974, mean: 5.970757, max: 6.737979 14:51:44 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:51:44 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.026309, dN_50: 0.002065 14:51:44 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:51:44 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.02244041926659672 14:51:44 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:51:44 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:51:44 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:51:44 DEBUG opendrift.models.physics_methods:912: Advecting 131 of 5599 elements above 0.100m with wind-sheared ocean current (0.005032 m/s - 0.225253 m/s) 14:51:44 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:51:44 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.00014166548498915026 and 0.44564456947239556 m/s 14:51:44 DEBUG opendrift.models.basemodel:2097: 5599 active elements (401 deactivated) 14:51:44 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:51:44 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:51:44 INFO opendrift.models.basemodel:2011: 2024-04-24 23:42:41.057477 - step 82 of 120 - 5599 active elements (401 deactivated) 14:51:44 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:51:44 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:51:44 DEBUG opendrift.models.basemodel:2030: 34.893393676971456 <- latitude -> 35.542601338292364 14:51:44 DEBUG opendrift.models.basemodel:2035: 22.97462121981328 <- longitude -> 23.652213805584978 14:51:44 DEBUG opendrift.models.basemodel:2040: -80.91387018049875 <- z -> 0.0 14:51:44 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:51:44 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:44 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:51:44 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51:44 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:51:44 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:44 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5599 elements 14:51:44 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5599 elements 14:51:44 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:51:44 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:44 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:44 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:44 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:51:44 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51:44 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:51:44 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:44 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5599 elements 14:51:44 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5599 elements 14:51:44 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:51:44 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:51:44 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:44 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:44 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:44 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:51:44 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51:44 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:51:44 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:44 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5599 elements 14:51:44 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5599 elements 14:51:44 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:51:44 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-24 21:00:00 (before) 2024-04-25 00:00:00 (after) 14:51:44 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-24 21:00:00) in space (linearNDFast) 14:51:44 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:44 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-25 00:00:00) in space (linearNDFast) 14:51:44 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:44 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-24 21:00:00, weight 0.10) and after (2024-04-25 00:00:00, weight 0.90) in time 14:51:44 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:44 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:44 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:44 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:51:44 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51: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 14:51:44 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:44 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5599 elements 14:51: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 5599 elements 14:51:44 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:51:44 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-24 21:00:00 (before) 2024-04-25 00:00:00 (after) 14:51:44 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-24 21:00:00) in space (linearNDFast) 14:51:44 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:44 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-25 00:00:00) in space (linearNDFast) 14:51:44 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:44 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-24 21:00:00, weight 0.10) and after (2024-04-25 00:00:00, weight 0.90) in time 14:51:44 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:44 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:44 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:51:44 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:51:44 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'] 14:51:44 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:51:44 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:51:44 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:51:44 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:51:44 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.315187 (min) 0.0962188 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.118695 (min) 0.228627 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:905: x_wind: 5.20401 (min) 7.21122 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:905: y_wind: -2.97104 (min) 0.683832 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:51:44 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:51:44 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.676402, mean: 1.132492, max: 1.387850 14:51:44 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:51:44 DEBUG opendrift.models.physics_methods:1058: min: 4.480557, mean: 5.791310, max: 6.418017 14:51:44 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.480557, mean: 5.791310, max: 6.418017 14:51:44 DEBUG opendrift.models.basemodel:1667: 1 elements scheduled for deactivation (stranded) 14:51:44 DEBUG opendrift.models.basemodel:1669: (z: -16.294487 to -16.294487) 14:51:44 DEBUG opendrift.models.basemodel:1687: Removed 1 elements. 14:51:44 DEBUG opendrift.models.basemodel:1690: Removed 1 values from environment. 14:51:44 DEBUG opendrift.models.basemodel:1695: remove items from profile for z 14:51:44 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_temperature 14:51:44 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_salinity 14:51:44 DEBUG opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity 14:51:44 DEBUG opendrift.models.basemodel:1699: Removed 1 values from environment_profiles. 14:51:44 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:51:44 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:51:44 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:51:44 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:51:44 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:51:44 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:51:44 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:51:44 DEBUG opendrift.models.physics_methods:1058: min: 4.604116, mean: 5.791544, max: 6.418017 14:51:44 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:51:44 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.027268, dN_50: 0.002140 14:51:44 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:51:44 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.02036018314338897 14:51:44 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:51:44 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:51:44 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:51:44 DEBUG opendrift.models.physics_methods:912: Advecting 137 of 5598 elements above 0.100m with wind-sheared ocean current (0.012281 m/s - 0.215053 m/s) 14:51:44 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:51:44 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.002494481897488445 and 0.4088059838667094 m/s 14:51:44 DEBUG opendrift.models.basemodel:2097: 5598 active elements (402 deactivated) 14:51:44 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:51:44 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:51:44 INFO opendrift.models.basemodel:2011: 2024-04-25 00:42:41.057477 - step 83 of 120 - 5598 active elements (402 deactivated) 14:51:44 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:51:44 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:51:44 DEBUG opendrift.models.basemodel:2030: 34.88307826952181 <- latitude -> 35.535134183207816 14:51:44 DEBUG opendrift.models.basemodel:2035: 22.963311025556536 <- longitude -> 23.655451929778614 14:51:44 DEBUG opendrift.models.basemodel:2040: -79.93065181098163 <- z -> 0.0 14:51:44 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:51:44 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:44 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:51:44 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51:44 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:51:44 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:44 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5598 elements 14:51:44 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5598 elements 14:51:44 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:51:44 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:44 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:44 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:44 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:51:44 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51:44 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:51:44 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:44 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5598 elements 14:51:44 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5598 elements 14:51:44 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:51:44 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:51:44 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:44 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:44 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:44 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:51:44 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51:44 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:51:44 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:44 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5598 elements 14:51:44 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5598 elements 14:51:44 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:51:44 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-25 00:00:00 (before) 2024-04-25 03:00:00 (after) 14:51:44 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity 14:51:51 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_sea_water_velocity to retrieve y_sea_water_velocity 14:51:58 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:51:58 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values 14:51:58 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values 14:51:58 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity'] 14:51:58 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 16x24x19) for time after (2024-04-25 03:00:00) 14:51:58 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-25 00:00:00) in space (linearNDFast) 14:51:58 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:58 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-25 03:00:00) in space (linearNDFast) 14:51:58 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 393 elements, expanding data 1 14:51:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 393 elements, expanding data 1 14:51:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 393 elements, expanding data 1 14:51:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 393 elements, expanding data 1 14:51:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 393 elements, expanding data 1 14:51:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 393 elements, expanding data 1 14:51:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 393 elements, expanding data 1 14:51:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 393 elements, expanding data 1 14:51:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 393 elements, expanding data 1 14:51:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 393 elements, expanding data 1 14:51:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 393 elements, expanding data 1 14:51:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 393 elements, expanding data 1 14:51:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 393 elements, expanding data 1 14:51:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 393 elements, expanding data 1 14:51:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 393 elements, expanding data 1 14:51:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 393 elements, expanding data 1 14:51:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 393 elements, expanding data 1 14:51:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 393 elements, expanding data 1 14:51:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 393 elements, expanding data 1 14:51:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 393 elements, expanding data 1 14:51:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 393 elements, expanding data 1 14:51:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 393 elements, expanding data 1 14:51:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 393 elements, expanding data 1 14:51:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 393 elements, expanding data 1 14:51:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 393 elements, expanding data 1 14:51:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 393 elements, expanding data 1 14:51:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 393 elements, expanding data 1 14:51:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 393 elements, expanding data 1 14:51:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 393 elements, expanding data 1 14:51:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 393 elements, expanding data 1 14:51:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 393 elements, expanding data 1 14:51:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 393 elements, expanding data 1 14:51:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 393 elements, expanding data 1 14:51:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 393 elements, expanding data 1 14:51:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 393 elements, expanding data 1 14:51:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 393 elements, expanding data 1 14:51:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 393 elements, expanding data 1 14:51:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 393 elements, expanding data 1 14:51:58 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-25 00:00:00, weight 0.76) and after (2024-04-25 03:00:00, weight 0.24) in time 14:51:58 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:58 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:58 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:58 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:51:58 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51: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 14:51:58 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:58 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5598 elements 14:51: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 5598 elements 14:51:58 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:51:58 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-25 00:00:00 (before) 2024-04-25 03:00:00 (after) 14:51:58 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_wind to retrieve x_wind 14:51:58 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_wind to retrieve y_wind 14:51:58 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:51:58 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values 14:51:58 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values 14:51:58 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 8x8x1) for time after (2024-04-25 03:00:00) 14:51:58 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-25 00:00:00) in space (linearNDFast) 14:51:58 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:58 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-25 03:00:00) in space (linearNDFast) 14:51:58 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:58 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-25 00:00:00, weight 0.76) and after (2024-04-25 03:00:00, weight 0.24) in time 14:51:58 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:58 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:58 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:51:58 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:51: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'] 14:51:58 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:51:58 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:51:58 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:51:58 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:51:58 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.26294 (min) 0.138265 (max) 14:51:58 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.128227 (min) 0.218255 (max) 14:51:58 DEBUG opendrift.models.basemodel.environment:905: x_wind: 5.55092 (min) 7.23313 (max) 14:51:58 DEBUG opendrift.models.basemodel.environment:905: y_wind: -2.83168 (min) 0.687313 (max) 14:51:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:51:58 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:51:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:51:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:51:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:51:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:51:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:51:58 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:51:58 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:51:58 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:51:58 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:51:58 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:51:58 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:51:58 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:51:58 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max) 14:51:58 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:51:58 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:51:58 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.765216, mean: 1.159092, max: 1.377524 14:51:58 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:51:58 DEBUG opendrift.models.physics_methods:1058: min: 4.765644, mean: 5.860731, max: 6.394097 14:51:58 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.765644, mean: 5.860731, max: 6.394097 14:51:58 DEBUG opendrift.models.basemodel:1667: 3 elements scheduled for deactivation (stranded) 14:51:58 DEBUG opendrift.models.basemodel:1669: (z: -15.230586 to 0.000000) 14:51:58 DEBUG opendrift.models.basemodel:1687: Removed 3 elements. 14:51:58 DEBUG opendrift.models.basemodel:1690: Removed 3 values from environment. 14:51:58 DEBUG opendrift.models.basemodel:1695: remove items from profile for z 14:51:58 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_temperature 14:51:58 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_salinity 14:51:58 DEBUG opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity 14:51:58 DEBUG opendrift.models.basemodel:1699: Removed 3 values from environment_profiles. 14:51:58 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:51:58 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:51:58 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:51:58 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:51:58 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:51:58 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:51:58 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:51:58 DEBUG opendrift.models.physics_methods:1058: min: 4.765645, mean: 5.861116, max: 6.394097 14:51:58 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:51:58 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.027527, dN_50: 0.002160 14:51:58 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:51:58 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.020208729783197186 14:51:58 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:51:58 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:51:58 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:51:58 DEBUG opendrift.models.physics_methods:912: Advecting 151 of 5595 elements above 0.100m with wind-sheared ocean current (0.033153 m/s - 0.215188 m/s) 14:51:58 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:51:58 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0013291808425202492 and 0.4140677760607079 m/s 14:51:58 DEBUG opendrift.models.basemodel:2097: 5595 active elements (405 deactivated) 14:51:58 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:51:58 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:51:58 INFO opendrift.models.basemodel:2011: 2024-04-25 01:42:41.057477 - step 84 of 120 - 5595 active elements (405 deactivated) 14:51:58 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:51:58 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:51:58 DEBUG opendrift.models.basemodel:2030: 34.87610985901973 <- latitude -> 35.53223997398743 14:51:58 DEBUG opendrift.models.basemodel:2035: 22.946456379996345 <- longitude -> 23.661174059356284 14:51:58 DEBUG opendrift.models.basemodel:2040: -78.74748163389447 <- z -> 0.0 14:51:58 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:51:58 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:58 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:51:58 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51:58 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:51:58 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:58 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5595 elements 14:51:58 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5595 elements 14:51:58 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:51:58 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:58 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:58 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:58 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:51:58 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51:58 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:51:58 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:58 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5595 elements 14:51:58 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5595 elements 14:51:58 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:51:58 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:51:58 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:58 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:58 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:58 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:51:58 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51:58 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:51:58 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:58 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5595 elements 14:51:58 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5595 elements 14:51:58 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:51:58 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-25 00:00:00 (before) 2024-04-25 03:00:00 (after) 14:51:58 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-25 00:00:00) in space (linearNDFast) 14:51:58 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:58 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-25 03:00:00) in space (linearNDFast) 14:51:58 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:58 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-25 00:00:00, weight 0.43) and after (2024-04-25 03:00:00, weight 0.57) in time 14:51:58 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:58 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:58 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:58 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:51:58 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51: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 14:51:58 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:58 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5595 elements 14:51: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 5595 elements 14:51:58 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:51:58 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-25 00:00:00 (before) 2024-04-25 03:00:00 (after) 14:51:58 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-25 00:00:00) in space (linearNDFast) 14:51:58 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:58 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-25 03:00:00) in space (linearNDFast) 14:51:58 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:58 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-25 00:00:00, weight 0.43) and after (2024-04-25 03:00:00, weight 0.57) in time 14:51:58 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:58 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:58 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:51:58 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:51: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'] 14:51:58 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:51:58 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:51:58 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:51:58 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:51:58 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.230475 (min) 0.151488 (max) 14:51:58 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.139651 (min) 0.219411 (max) 14:51:58 DEBUG opendrift.models.basemodel.environment:905: x_wind: 5.84892 (min) 7.4168 (max) 14:51:58 DEBUG opendrift.models.basemodel.environment:905: y_wind: -2.73127 (min) 0.710764 (max) 14:51:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:51:58 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:51:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:51:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:51:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:51:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:51:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:51:58 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:51:58 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:51:58 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:51:58 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:51:58 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:51:58 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:51:58 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:51:58 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max) 14:51:58 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:51:58 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:51:58 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.849042, mean: 1.229234, max: 1.420921 14:51:58 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:51:58 DEBUG opendrift.models.physics_methods:1058: min: 5.019890, mean: 6.036762, max: 6.494035 14:51:58 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 5.019890, mean: 6.036762, max: 6.494035 14:51:58 DEBUG opendrift.models.basemodel:1667: 1 elements scheduled for deactivation (stranded) 14:51:58 DEBUG opendrift.models.basemodel:1669: (z: 0.000000 to 0.000000) 14:51:59 DEBUG opendrift.models.basemodel:1687: Removed 1 elements. 14:51:59 DEBUG opendrift.models.basemodel:1690: Removed 1 values from environment. 14:51:59 DEBUG opendrift.models.basemodel:1695: remove items from profile for z 14:51:59 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_temperature 14:51:59 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_salinity 14:51:59 DEBUG opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity 14:51:59 DEBUG opendrift.models.basemodel:1699: Removed 1 values from environment_profiles. 14:51:59 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:51:59 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:51:59 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:51:59 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:51:59 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:51:59 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:51:59 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:51:59 DEBUG opendrift.models.physics_methods:1058: min: 5.019889, mean: 6.036845, max: 6.494035 14:51:59 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:51:59 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.027498, dN_50: 0.002158 14:51:59 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:51:59 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.02084524956598653 14:51:59 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:51:59 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:51:59 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:51:59 DEBUG opendrift.models.physics_methods:912: Advecting 150 of 5594 elements above 0.100m with wind-sheared ocean current (0.019764 m/s - 0.220754 m/s) 14:51:59 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:51:59 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0017454273591271917 and 0.48577068263242795 m/s 14:51:59 DEBUG opendrift.models.basemodel:2097: 5594 active elements (406 deactivated) 14:51:59 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:51:59 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:51:59 INFO opendrift.models.basemodel:2011: 2024-04-25 02:42:41.057477 - step 85 of 120 - 5594 active elements (406 deactivated) 14:51:59 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:51:59 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:51:59 DEBUG opendrift.models.basemodel:2030: 34.87416058199224 <- latitude -> 35.531753787469235 14:51:59 DEBUG opendrift.models.basemodel:2035: 22.94002181680199 <- longitude -> 23.672060128049356 14:51:59 DEBUG opendrift.models.basemodel:2040: -77.4185969024054 <- z -> 0.0 14:51:59 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:51:59 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:59 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:51:59 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51:59 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:51:59 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:59 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5594 elements 14:51:59 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5594 elements 14:51:59 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:51:59 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:59 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:59 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:59 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:51:59 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51:59 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:51:59 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:59 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5594 elements 14:51:59 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5594 elements 14:51:59 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:51:59 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:51:59 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:59 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:59 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:59 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:51:59 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51:59 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:51:59 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:59 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5594 elements 14:51:59 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5594 elements 14:51:59 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:51:59 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-25 00:00:00 (before) 2024-04-25 03:00:00 (after) 14:51:59 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-25 00:00:00) in space (linearNDFast) 14:51:59 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:59 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-25 03:00:00) in space (linearNDFast) 14:51:59 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:59 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-25 00:00:00, weight 0.10) and after (2024-04-25 03:00:00, weight 0.90) in time 14:51:59 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:59 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:59 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:59 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:51:59 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51: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 14:51:59 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:59 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5594 elements 14:51: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 5594 elements 14:51:59 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:51:59 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-25 00:00:00 (before) 2024-04-25 03:00:00 (after) 14:51:59 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-25 00:00:00) in space (linearNDFast) 14:51:59 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:59 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-25 03:00:00) in space (linearNDFast) 14:51:59 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:51:59 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-25 00:00:00, weight 0.10) and after (2024-04-25 03:00:00, weight 0.90) in time 14:51:59 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:59 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:59 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:51:59 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:51: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'] 14:51:59 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:51:59 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:51:59 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:51:59 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:51:59 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.206997 (min) 0.166094 (max) 14:51:59 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.16826 (min) 0.223577 (max) 14:51:59 DEBUG opendrift.models.basemodel.environment:905: x_wind: 6.14666 (min) 7.61064 (max) 14:51:59 DEBUG opendrift.models.basemodel.environment:905: y_wind: -2.6504 (min) 0.695751 (max) 14:51:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:51:59 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:51:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:51:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:51:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:51:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:51:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:51:59 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:51:59 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:51:59 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:51:59 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:51:59 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:51:59 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:51:59 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:51:59 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max) 14:51:59 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:51:59 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:51:59 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.936330, mean: 1.303175, max: 1.474480 14:51:59 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:51:59 DEBUG opendrift.models.physics_methods:1058: min: 5.271619, mean: 6.216659, max: 6.615291 14:51:59 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 5.271619, mean: 6.216659, max: 6.615291 14:51:59 DEBUG opendrift.models.basemodel:1667: 3 elements scheduled for deactivation (stranded) 14:51:59 DEBUG opendrift.models.basemodel:1669: (z: -8.842264 to 0.000000) 14:51:59 DEBUG opendrift.models.basemodel:1687: Removed 3 elements. 14:51:59 DEBUG opendrift.models.basemodel:1690: Removed 3 values from environment. 14:51:59 DEBUG opendrift.models.basemodel:1695: remove items from profile for z 14:51:59 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_temperature 14:51:59 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_salinity 14:51:59 DEBUG opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity 14:51:59 DEBUG opendrift.models.basemodel:1699: Removed 3 values from environment_profiles. 14:51:59 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:51:59 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:51:59 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:51:59 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:51:59 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:51:59 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:51:59 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:51:59 DEBUG opendrift.models.physics_methods:1058: min: 5.271619, mean: 6.216846, max: 6.615292 14:51:59 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:51:59 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.027460, dN_50: 0.002155 14:51:59 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:51:59 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.02163080237441364 14:51:59 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:51:59 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:51:59 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:51:59 DEBUG opendrift.models.physics_methods:912: Advecting 159 of 5591 elements above 0.100m with wind-sheared ocean current (0.006684 m/s - 0.228644 m/s) 14:51:59 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:51:59 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0026174126218670205 and 0.4322533658697194 m/s 14:51:59 DEBUG opendrift.models.basemodel:2097: 5591 active elements (409 deactivated) 14:51:59 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:51:59 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:51:59 INFO opendrift.models.basemodel:2011: 2024-04-25 03:42:41.057477 - step 86 of 120 - 5591 active elements (409 deactivated) 14:51:59 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:51:59 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:51:59 DEBUG opendrift.models.basemodel:2030: 34.869370773451394 <- latitude -> 35.52218339967948 14:51:59 DEBUG opendrift.models.basemodel:2035: 22.932679234662547 <- longitude -> 23.675384587917993 14:51:59 DEBUG opendrift.models.basemodel:2040: -76.79669268305926 <- z -> 0.0 14:51:59 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:51:59 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:59 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:51:59 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51:59 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:51:59 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:59 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5591 elements 14:51:59 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5591 elements 14:51:59 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:51:59 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:59 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:59 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:59 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:51:59 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51:59 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:51:59 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:59 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5591 elements 14:51:59 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5591 elements 14:51:59 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:51:59 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:51:59 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:51:59 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:51:59 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:51:59 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:51:59 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:51:59 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:51:59 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:51:59 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5591 elements 14:51:59 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5591 elements 14:51:59 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:51:59 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-25 03:00:00 (before) 2024-04-25 06:00:00 (after) 14:51:59 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity 14:52:07 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_sea_water_velocity to retrieve y_sea_water_velocity 14:52:11 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:52:11 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values 14:52:11 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values 14:52:11 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity'] 14:52:11 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 18x24x19) for time after (2024-04-25 06:00:00) 14:52:11 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-25 03:00:00) in space (linearNDFast) 14:52:11 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:52:11 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-25 06:00:00) in space (linearNDFast) 14:52:11 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:52:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 381 elements, expanding data 1 14:52:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 381 elements, expanding data 1 14:52:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 381 elements, expanding data 1 14:52:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 381 elements, expanding data 1 14:52:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 381 elements, expanding data 1 14:52:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 381 elements, expanding data 1 14:52:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 381 elements, expanding data 1 14:52:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 381 elements, expanding data 1 14:52:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 381 elements, expanding data 1 14:52:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 381 elements, expanding data 1 14:52:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 381 elements, expanding data 1 14:52:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 381 elements, expanding data 1 14:52:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 381 elements, expanding data 1 14:52:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 381 elements, expanding data 1 14:52:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 381 elements, expanding data 1 14:52:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 381 elements, expanding data 1 14:52:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 381 elements, expanding data 1 14:52:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 381 elements, expanding data 1 14:52:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 381 elements, expanding data 1 14:52:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 381 elements, expanding data 1 14:52:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 381 elements, expanding data 1 14:52:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 381 elements, expanding data 1 14:52:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 381 elements, expanding data 1 14:52:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 381 elements, expanding data 1 14:52:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 381 elements, expanding data 1 14:52:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 381 elements, expanding data 1 14:52:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 381 elements, expanding data 1 14:52:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 381 elements, expanding data 1 14:52:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 381 elements, expanding data 1 14:52:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 381 elements, expanding data 1 14:52:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 381 elements, expanding data 1 14:52:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 381 elements, expanding data 1 14:52:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 381 elements, expanding data 1 14:52:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 381 elements, expanding data 1 14:52:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 381 elements, expanding data 1 14:52:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 381 elements, expanding data 1 14:52:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 381 elements, expanding data 1 14:52:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 381 elements, expanding data 1 14:52:11 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-25 03:00:00, weight 0.76) and after (2024-04-25 06:00:00, weight 0.24) in time 14:52:11 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:52:11 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:52:11 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:52:11 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:52:11 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:52: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 14:52:11 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:52:11 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5591 elements 14:52: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 5591 elements 14:52:11 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:52:11 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-25 03:00:00 (before) 2024-04-25 06:00:00 (after) 14:52:11 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_wind to retrieve x_wind 14:52:11 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_wind to retrieve y_wind 14:52:12 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:52:12 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values 14:52:12 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values 14:52:12 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 8x8x1) for time after (2024-04-25 06:00:00) 14:52:12 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-25 03:00:00) in space (linearNDFast) 14:52:12 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:52:12 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-25 06:00:00) in space (linearNDFast) 14:52:12 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:52:12 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-25 03:00:00, weight 0.76) and after (2024-04-25 06:00:00, weight 0.24) in time 14:52:12 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:52:12 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:52:12 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:52:12 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:52: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'] 14:52:12 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:52:12 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:52:12 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:52:12 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:52:12 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.200438 (min) 0.1569 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.203795 (min) 0.190064 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:905: x_wind: 5.69099 (min) 7.69785 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:905: y_wind: -2.0939 (min) 1.26789 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:52:12 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.827784, mean: 1.152781, max: 1.479399 14:52:12 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:52:12 DEBUG opendrift.models.physics_methods:1058: min: 4.956648, mean: 5.844759, max: 6.626317 14:52:12 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.956648, mean: 5.844759, max: 6.626317 14:52:12 DEBUG opendrift.models.basemodel:1667: 4 elements scheduled for deactivation (stranded) 14:52:12 DEBUG opendrift.models.basemodel:1669: (z: -11.441385 to 0.000000) 14:52:12 DEBUG opendrift.models.basemodel:1687: Removed 4 elements. 14:52:12 DEBUG opendrift.models.basemodel:1690: Removed 4 values from environment. 14:52:12 DEBUG opendrift.models.basemodel:1695: remove items from profile for z 14:52:12 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_temperature 14:52:12 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_salinity 14:52:12 DEBUG opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity 14:52:12 DEBUG opendrift.models.basemodel:1699: Removed 4 values from environment_profiles. 14:52:12 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:52:12 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:52:12 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:52:12 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:52:12 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:52:12 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:52:12 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:52:12 DEBUG opendrift.models.physics_methods:1058: min: 4.956648, mean: 5.845108, max: 6.626317 14:52:12 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:52:12 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.029176, dN_50: 0.002290 14:52:12 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:52:12 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.02170294879268927 14:52:12 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:52:12 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:52:12 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:52:12 DEBUG opendrift.models.physics_methods:912: Advecting 159 of 5587 elements above 0.100m with wind-sheared ocean current (0.011556 m/s - 0.219354 m/s) 14:52:12 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:52:12 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.002155426391934697 and 0.4200178245212022 m/s 14:52:12 DEBUG opendrift.models.basemodel:2097: 5587 active elements (413 deactivated) 14:52:12 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:52:12 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:52:12 INFO opendrift.models.basemodel:2011: 2024-04-25 04:42:41.057477 - step 87 of 120 - 5587 active elements (413 deactivated) 14:52:12 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:52:12 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:52:12 DEBUG opendrift.models.basemodel:2030: 34.86533280037959 <- latitude -> 35.51665237782142 14:52:12 DEBUG opendrift.models.basemodel:2035: 22.920687488078592 <- longitude -> 23.687955875238934 14:52:12 DEBUG opendrift.models.basemodel:2040: -75.97809146927463 <- z -> 0.0 14:52:12 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:52:12 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:52:12 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:52:12 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:52:12 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:52:12 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:52:12 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5587 elements 14:52:12 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5587 elements 14:52:12 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:52:12 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:52:12 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:52:12 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:52:12 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:52:12 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:52:12 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:52:12 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:52:12 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5587 elements 14:52:12 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5587 elements 14:52:12 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:52:12 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:52:12 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:52:12 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:52:12 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:52:12 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:52:12 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:52:12 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:52:12 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:52:12 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5587 elements 14:52:12 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5587 elements 14:52:12 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:52:12 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-25 03:00:00 (before) 2024-04-25 06:00:00 (after) 14:52:12 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-25 03:00:00) in space (linearNDFast) 14:52:12 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-25 06:00:00) in space (linearNDFast) 14:52:12 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1 14:52:12 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-25 03:00:00, weight 0.43) and after (2024-04-25 06:00:00, weight 0.57) in time 14:52:12 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:52:12 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:52:12 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:52:12 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:52:12 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:52: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 14:52:12 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:52:12 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5587 elements 14:52: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 5587 elements 14:52:12 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:52:12 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-25 03:00:00 (before) 2024-04-25 06:00:00 (after) 14:52:12 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-25 03:00:00) in space (linearNDFast) 14:52:12 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:52:12 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-25 06:00:00) in space (linearNDFast) 14:52:12 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:52:12 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-25 03:00:00, weight 0.43) and after (2024-04-25 06:00:00, weight 0.57) in time 14:52:12 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:52:12 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:52:12 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:52:12 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:52: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'] 14:52:12 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:52:12 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:52:12 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:52:12 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:52:12 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.19529 (min) 0.200441 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.236869 (min) 0.153644 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:905: x_wind: 4.96363 (min) 7.78597 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:905: y_wind: -1.37295 (min) 2.0555 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:52:12 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.678693, mean: 0.948193, max: 1.496620 14:52:12 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:52:12 DEBUG opendrift.models.physics_methods:1058: min: 4.488140, mean: 5.294609, max: 6.664774 14:52:12 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.488140, mean: 5.294609, max: 6.664774 14:52:12 DEBUG opendrift.models.basemodel:1667: 1 elements scheduled for deactivation (stranded) 14:52:12 DEBUG opendrift.models.basemodel:1669: (z: 0.000000 to 0.000000) 14:52:12 DEBUG opendrift.models.basemodel:1687: Removed 1 elements. 14:52:12 DEBUG opendrift.models.basemodel:1690: Removed 1 values from environment. 14:52:12 DEBUG opendrift.models.basemodel:1695: remove items from profile for z 14:52:12 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_temperature 14:52:12 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_salinity 14:52:12 DEBUG opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity 14:52:12 DEBUG opendrift.models.basemodel:1699: Removed 1 values from environment_profiles. 14:52:12 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:52:12 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:52:12 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:52:12 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:52:12 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:52:12 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:52:12 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:52:12 DEBUG opendrift.models.physics_methods:1058: min: 4.488140, mean: 5.294691, max: 6.664774 14:52:12 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:52:12 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.031866, dN_50: 0.002501 14:52:12 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:52:12 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.02195554322719787 14:52:12 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:52:12 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:52:12 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:52:12 DEBUG opendrift.models.physics_methods:912: Advecting 163 of 5586 elements above 0.100m with wind-sheared ocean current (0.017834 m/s - 0.211739 m/s) 14:52:12 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:52:12 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0025861060419211748 and 0.47904239888381434 m/s 14:52:12 DEBUG opendrift.models.basemodel:2097: 5586 active elements (414 deactivated) 14:52:12 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:52:12 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:52:12 INFO opendrift.models.basemodel:2011: 2024-04-25 05:42:41.057477 - step 88 of 120 - 5586 active elements (414 deactivated) 14:52:12 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:52:12 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:52:12 DEBUG opendrift.models.basemodel:2030: 34.86353862697108 <- latitude -> 35.50860441387772 14:52:12 DEBUG opendrift.models.basemodel:2035: 22.921194028297098 <- longitude -> 23.694966110001758 14:52:12 DEBUG opendrift.models.basemodel:2040: -75.17093564160339 <- z -> 0.0 14:52:12 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:52:12 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:52:12 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:52:12 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:52:12 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:52:12 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:52:12 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5586 elements 14:52:12 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5586 elements 14:52:12 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:52:12 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:52:12 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:52:12 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:52:12 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:52:12 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:52:12 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:52:12 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:52:12 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5586 elements 14:52:12 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5586 elements 14:52:12 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:52:12 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:52:12 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:52:12 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:52:12 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:52:12 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:52:12 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:52:12 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:52:12 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:52:12 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5586 elements 14:52:12 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5586 elements 14:52:12 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:52:12 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-25 03:00:00 (before) 2024-04-25 06:00:00 (after) 14:52:12 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-25 03:00:00) in space (linearNDFast) 14:52:12 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:52:12 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-25 06:00:00) in space (linearNDFast) 14:52:12 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:52:12 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-25 03:00:00, weight 0.10) and after (2024-04-25 06:00:00, weight 0.90) in time 14:52:12 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:52:12 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:52:12 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:52:12 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:52:12 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:52: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 14:52:12 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:52:12 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5586 elements 14:52: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 5586 elements 14:52:12 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:52:12 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-25 03:00:00 (before) 2024-04-25 06:00:00 (after) 14:52:12 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-25 03:00:00) in space (linearNDFast) 14:52:12 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:52:12 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-25 06:00:00) in space (linearNDFast) 14:52:12 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:52:12 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-25 03:00:00, weight 0.10) and after (2024-04-25 06:00:00, weight 0.90) in time 14:52:12 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:52:12 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:52:12 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:52:12 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:52: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'] 14:52:12 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:52:12 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:52:12 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:52:12 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:52:12 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.189095 (min) 0.186082 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.286196 (min) 0.107035 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:905: x_wind: 4.23832 (min) 7.87206 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:905: y_wind: -0.775165 (min) 2.80988 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:52:12 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:52:12 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.500207, mean: 0.785874, max: 1.525200 14:52:12 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:52:12 DEBUG opendrift.models.physics_methods:1058: min: 3.853047, mean: 4.810206, max: 6.728109 14:52:12 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 3.853047, mean: 4.810206, max: 6.728109 14:52:12 DEBUG opendrift.models.basemodel:1667: 6 elements scheduled for deactivation (stranded) 14:52:12 DEBUG opendrift.models.basemodel:1669: (z: -11.414471 to 0.000000) 14:52:12 DEBUG opendrift.models.basemodel:1687: Removed 6 elements. 14:52:12 DEBUG opendrift.models.basemodel:1690: Removed 6 values from environment. 14:52:12 DEBUG opendrift.models.basemodel:1695: remove items from profile for z 14:52:12 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_temperature 14:52:12 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_salinity 14:52:12 DEBUG opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity 14:52:12 DEBUG opendrift.models.basemodel:1699: Removed 6 values from environment_profiles. 14:52:12 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:52:12 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:52:12 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:52:12 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:52:12 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:52:12 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:52:12 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:52:12 DEBUG opendrift.models.physics_methods:1058: min: 3.853047, mean: 4.811133, max: 6.728108 14:52:12 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:52:12 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.034768, dN_50: 0.002729 14:52:12 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:52:12 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.0223747317746182 14:52:12 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:52:12 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:52:12 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:52:12 DEBUG opendrift.models.physics_methods:912: Advecting 164 of 5580 elements above 0.100m with wind-sheared ocean current (0.037997 m/s - 0.233018 m/s) 14:52:12 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:52:12 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0015607559789522986 and 0.42524903434987116 m/s 14:52:12 DEBUG opendrift.models.basemodel:2097: 5580 active elements (420 deactivated) 14:52:12 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:52:12 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:52:12 INFO opendrift.models.basemodel:2011: 2024-04-25 06:42:41.057477 - step 89 of 120 - 5580 active elements (420 deactivated) 14:52:12 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:52:12 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:52:12 DEBUG opendrift.models.basemodel:2030: 34.86402123881652 <- latitude -> 35.505408307401886 14:52:12 DEBUG opendrift.models.basemodel:2035: 22.919269280602037 <- longitude -> 23.702339973860532 14:52:12 DEBUG opendrift.models.basemodel:2040: -74.65761481314591 <- z -> 0.0 14:52:12 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:52:12 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:52:12 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:52:12 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:52:12 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:52:12 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:52:12 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5580 elements 14:52:12 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5580 elements 14:52:12 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:52:12 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:52:12 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:52:12 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:52:12 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:52:12 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:52:12 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:52:12 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:52:12 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5580 elements 14:52:12 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5580 elements 14:52:12 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:52:12 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:52:12 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:52:12 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:52:12 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:52:12 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:52:12 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:52:12 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:52:12 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:52:12 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5580 elements 14:52:12 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5580 elements 14:52:12 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:52:12 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-25 06:00:00 (before) 2024-04-25 09:00:00 (after) 14:52:12 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity 14:52:19 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_sea_water_velocity to retrieve y_sea_water_velocity 14:52:24 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:52:24 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values 14:52:24 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values 14:52:24 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity'] 14:52:24 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 18x24x19) for time after (2024-04-25 09:00:00) 14:52:24 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-25 06:00:00) in space (linearNDFast) 14:52:24 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:52:24 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-25 09:00:00) in space (linearNDFast) 14:52:24 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 346 elements, expanding data 1 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 346 elements, expanding data 1 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 346 elements, expanding data 1 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 346 elements, expanding data 1 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 346 elements, expanding data 1 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 346 elements, expanding data 1 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 346 elements, expanding data 1 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 346 elements, expanding data 1 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 346 elements, expanding data 1 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 346 elements, expanding data 1 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 346 elements, expanding data 1 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 346 elements, expanding data 1 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 346 elements, expanding data 1 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 346 elements, expanding data 1 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 346 elements, expanding data 1 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 346 elements, expanding data 1 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 346 elements, expanding data 1 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 346 elements, expanding data 1 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 346 elements, expanding data 1 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 346 elements, expanding data 1 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 346 elements, expanding data 1 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 346 elements, expanding data 1 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 346 elements, expanding data 1 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 346 elements, expanding data 1 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 346 elements, expanding data 1 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 346 elements, expanding data 1 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 346 elements, expanding data 1 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 346 elements, expanding data 1 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 346 elements, expanding data 1 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 346 elements, expanding data 1 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 346 elements, expanding data 1 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 346 elements, expanding data 1 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 346 elements, expanding data 1 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 346 elements, expanding data 1 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 346 elements, expanding data 1 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 346 elements, expanding data 1 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 346 elements, expanding data 1 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 346 elements, expanding data 1 14:52:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:24 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-25 06:00:00, weight 0.76) and after (2024-04-25 09:00:00, weight 0.24) in time 14:52:24 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:52:24 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:52:24 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:52:24 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:52:24 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:52: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 14:52:24 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:52:24 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5580 elements 14:52: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 5580 elements 14:52:24 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:52:24 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-25 06:00:00 (before) 2024-04-25 09:00:00 (after) 14:52:24 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_wind to retrieve x_wind 14:52:24 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_wind to retrieve y_wind 14:52:24 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:52:24 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values 14:52:24 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values 14:52:24 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 8x8x1) for time after (2024-04-25 09:00:00) 14:52:24 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-25 06:00:00) in space (linearNDFast) 14:52:24 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:52:24 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-25 09:00:00) in space (linearNDFast) 14:52:24 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:52:24 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-25 06:00:00, weight 0.76) and after (2024-04-25 09:00:00, weight 0.24) in time 14:52:24 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:52:24 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:52:24 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:52:24 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:52: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'] 14:52:24 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:52:24 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:52:24 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:52:24 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:52:24 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.198514 (min) 0.244235 (max) 14:52:24 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.341861 (min) 0.0763612 (max) 14:52:24 DEBUG opendrift.models.basemodel.environment:905: x_wind: 5.03656 (min) 7.98231 (max) 14:52:24 DEBUG opendrift.models.basemodel.environment:905: y_wind: -1.40161 (min) 2.18968 (max) 14:52:24 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:52:24 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:52:24 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:52:24 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:52:24 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:52:24 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:52:24 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:52:24 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:52:24 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:52:24 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:52:24 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:52:24 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:52:24 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:52:24 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:52:24 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max) 14:52:24 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:52:24 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:52:24 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.652206, mean: 0.928372, max: 1.581738 14:52:24 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:52:24 DEBUG opendrift.models.physics_methods:1058: min: 4.399690, mean: 5.235746, max: 6.851676 14:52:24 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.399690, mean: 5.235746, max: 6.851676 14:52:24 DEBUG opendrift.models.basemodel:1667: 1 elements scheduled for deactivation (stranded) 14:52:24 DEBUG opendrift.models.basemodel:1669: (z: 0.000000 to 0.000000) 14:52:24 DEBUG opendrift.models.basemodel:1687: Removed 1 elements. 14:52:24 DEBUG opendrift.models.basemodel:1690: Removed 1 values from environment. 14:52:24 DEBUG opendrift.models.basemodel:1695: remove items from profile for z 14:52:24 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_temperature 14:52:24 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_salinity 14:52:24 DEBUG opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity 14:52:24 DEBUG opendrift.models.basemodel:1699: Removed 1 values from environment_profiles. 14:52:24 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:52:24 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:52:24 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:52:24 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:52:24 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:52:24 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:52:24 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:52:24 DEBUG opendrift.models.physics_methods:1058: min: 4.399691, mean: 5.235861, max: 6.851676 14:52:24 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:52:24 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.033359, dN_50: 0.002618 14:52:24 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:52:24 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.02320398634118715 14:52:24 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:52:24 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:52:24 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:52:25 DEBUG opendrift.models.physics_methods:912: Advecting 168 of 5579 elements above 0.100m with wind-sheared ocean current (0.002933 m/s - 0.236851 m/s) 14:52:25 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:52:25 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0016105102511711543 and 0.4592952134903656 m/s 14:52:25 DEBUG opendrift.models.basemodel:2097: 5579 active elements (421 deactivated) 14:52:25 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:52:25 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:52:25 INFO opendrift.models.basemodel:2011: 2024-04-25 07:42:41.057477 - step 90 of 120 - 5579 active elements (421 deactivated) 14:52:25 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:52:25 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:52:25 DEBUG opendrift.models.basemodel:2030: 34.85782312030569 <- latitude -> 35.507005779219476 14:52:25 DEBUG opendrift.models.basemodel:2035: 22.917888856970258 <- longitude -> 23.709943844846567 14:52:25 DEBUG opendrift.models.basemodel:2040: -73.20660811050567 <- z -> 0.0 14:52:25 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:52:25 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:52:25 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:52:25 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:52:25 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:52:25 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:52:25 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5579 elements 14:52:25 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5579 elements 14:52:25 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:52:25 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:52:25 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:52:25 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:52:25 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:52:25 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:52:25 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:52:25 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:52:25 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5579 elements 14:52:25 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5579 elements 14:52:25 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:52:25 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:52:25 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:52:25 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:52:25 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:52:25 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:52:25 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:52:25 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:52:25 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:52:25 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5579 elements 14:52:25 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5579 elements 14:52:25 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:52:25 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-25 06:00:00 (before) 2024-04-25 09:00:00 (after) 14:52:25 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-25 06:00:00) in space (linearNDFast) 14:52:25 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:52:25 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-25 09:00:00) in space (linearNDFast) 14:52:25 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:52:25 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-25 06:00:00, weight 0.43) and after (2024-04-25 09:00:00, weight 0.57) in time 14:52:25 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:52:25 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:52:25 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:52:25 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:52:25 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:52: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 14:52:25 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:52:25 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5579 elements 14:52: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 5579 elements 14:52:25 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:52:25 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-25 06:00:00 (before) 2024-04-25 09:00:00 (after) 14:52:25 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-25 06:00:00) in space (linearNDFast) 14:52:25 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:52:25 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-25 09:00:00) in space (linearNDFast) 14:52:25 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:52:25 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-25 06:00:00, weight 0.43) and after (2024-04-25 09:00:00, weight 0.57) in time 14:52:25 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:52:25 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:52:25 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:52:25 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:52: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'] 14:52:25 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:52:25 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:52:25 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:52:25 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:52:25 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.221447 (min) 0.179975 (max) 14:52:25 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.366982 (min) 0.0450267 (max) 14:52:25 DEBUG opendrift.models.basemodel.environment:905: x_wind: 6.44473 (min) 8.02547 (max) 14:52:25 DEBUG opendrift.models.basemodel.environment:905: y_wind: -2.74208 (min) 0.991192 (max) 14:52:25 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:52:25 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:52:25 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:52:25 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:52:25 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:52:25 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:52:25 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:52:25 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:52:25 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:52:25 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:52:25 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:52:25 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:52:25 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:52:25 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:52:25 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max) 14:52:25 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:52:25 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:52:25 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.030698, mean: 1.292747, max: 1.702821 14:52:25 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:52:25 DEBUG opendrift.models.physics_methods:1058: min: 5.530894, mean: 6.188819, max: 7.109093 14:52:25 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 5.530894, mean: 6.188819, max: 7.109093 14:52:25 DEBUG opendrift.models.basemodel:1667: 3 elements scheduled for deactivation (stranded) 14:52:25 DEBUG opendrift.models.basemodel:1669: (z: -6.491500 to 0.000000) 14:52:25 DEBUG opendrift.models.basemodel:1687: Removed 3 elements. 14:52:25 DEBUG opendrift.models.basemodel:1690: Removed 3 values from environment. 14:52:25 DEBUG opendrift.models.basemodel:1695: remove items from profile for z 14:52:25 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_temperature 14:52:25 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_salinity 14:52:25 DEBUG opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity 14:52:25 DEBUG opendrift.models.basemodel:1699: Removed 3 values from environment_profiles. 14:52:25 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:52:25 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:52:25 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:52:25 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:52:25 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:52:25 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:52:25 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:52:25 DEBUG opendrift.models.physics_methods:1058: min: 5.544331, mean: 6.189146, max: 7.109093 14:52:25 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:52:25 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.030258, dN_50: 0.002375 14:52:25 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:52:25 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.024979956619509403 14:52:25 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:52:25 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:52:25 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:52:25 DEBUG opendrift.models.physics_methods:912: Advecting 173 of 5576 elements above 0.100m with wind-sheared ocean current (0.019386 m/s - 0.247197 m/s) 14:52:25 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:52:25 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0012698355132333015 and 0.4424379318423956 m/s 14:52:25 DEBUG opendrift.models.basemodel:2097: 5576 active elements (424 deactivated) 14:52:25 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:52:25 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:52:25 INFO opendrift.models.basemodel:2011: 2024-04-25 08:42:41.057477 - step 91 of 120 - 5576 active elements (424 deactivated) 14:52:25 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:52:25 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:52:25 DEBUG opendrift.models.basemodel:2030: 34.85484439284803 <- latitude -> 35.50195776211592 14:52:25 DEBUG opendrift.models.basemodel:2035: 22.91135574565302 <- longitude -> 23.7232812818153 14:52:25 DEBUG opendrift.models.basemodel:2040: -72.35903086986033 <- z -> 0.0 14:52:25 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:52:25 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:52:25 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:52:25 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:52:25 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:52:25 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:52:25 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5576 elements 14:52:25 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5576 elements 14:52:25 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:52:25 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:52:25 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:52:25 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:52:25 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:52:25 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:52:25 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:52:25 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:52:25 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5576 elements 14:52:25 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5576 elements 14:52:25 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:52:25 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:52:25 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:52:25 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:52:25 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:52:25 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:52:25 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:52:25 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:52:25 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:52:25 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5576 elements 14:52:25 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5576 elements 14:52:25 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:52:25 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-25 06:00:00 (before) 2024-04-25 09:00:00 (after) 14:52:25 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-25 06:00:00) in space (linearNDFast) 14:52:25 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:52:25 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-25 09:00:00) in space (linearNDFast) 14:52:25 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:52:25 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-25 06:00:00, weight 0.10) and after (2024-04-25 09:00:00, weight 0.90) in time 14:52:25 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:52:25 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:52:25 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:52:25 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:52:25 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:52: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 14:52:25 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:52:25 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5576 elements 14:52: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 5576 elements 14:52:25 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:52:25 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-25 06:00:00 (before) 2024-04-25 09:00:00 (after) 14:52:25 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-25 06:00:00) in space (linearNDFast) 14:52:25 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:52:25 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-25 09:00:00) in space (linearNDFast) 14:52:25 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:52:25 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-25 06:00:00, weight 0.10) and after (2024-04-25 09:00:00, weight 0.90) in time 14:52:25 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:52:25 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:52:25 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:52:25 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:52: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'] 14:52:25 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:52:25 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:52:25 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:52:25 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:52:25 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.262173 (min) 0.0897603 (max) 14:52:25 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.392917 (min) 0.0189341 (max) 14:52:25 DEBUG opendrift.models.basemodel.environment:905: x_wind: 7.63968 (min) 8.32365 (max) 14:52:25 DEBUG opendrift.models.basemodel.environment:905: y_wind: -4.15918 (min) -0.203661 (max) 14:52:25 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:52:25 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:52:25 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:52:25 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:52:25 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:52:25 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:52:25 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:52:25 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:52:25 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:52:25 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:52:25 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:52:25 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:52:25 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:52:25 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:52:25 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max) 14:52:25 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:52:25 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:52:25 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.516935, mean: 1.784960, max: 1.937856 14:52:25 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:52:25 DEBUG opendrift.models.physics_methods:1058: min: 6.709854, mean: 7.276738, max: 7.583861 14:52:25 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 6.709854, mean: 7.276738, max: 7.583861 14:52:25 DEBUG opendrift.models.basemodel:1667: 1 elements scheduled for deactivation (stranded) 14:52:25 DEBUG opendrift.models.basemodel:1669: (z: 0.000000 to 0.000000) 14:52:25 DEBUG opendrift.models.basemodel:1687: Removed 1 elements. 14:52:25 DEBUG opendrift.models.basemodel:1690: Removed 1 values from environment. 14:52:25 DEBUG opendrift.models.basemodel:1695: remove items from profile for z 14:52:25 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_temperature 14:52:25 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_salinity 14:52:25 DEBUG opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity 14:52:25 DEBUG opendrift.models.basemodel:1699: Removed 1 values from environment_profiles. 14:52:25 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:52:25 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:52:25 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:52:25 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:52:25 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:52:25 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:52:25 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:52:25 DEBUG opendrift.models.physics_methods:1058: min: 6.709855, mean: 7.276805, max: 7.583860 14:52:25 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:52:25 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.027633, dN_50: 0.002169 14:52:25 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:52:25 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.02842727632003838 14:52:25 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:52:25 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:52:25 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:52:25 DEBUG opendrift.models.physics_methods:912: Advecting 176 of 5575 elements above 0.100m with wind-sheared ocean current (0.035365 m/s - 0.265312 m/s) 14:52:25 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:52:25 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0007013164439872 and 0.4483085202321411 m/s 14:52:25 DEBUG opendrift.models.basemodel:2097: 5575 active elements (425 deactivated) 14:52:25 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:52:25 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:52:25 INFO opendrift.models.basemodel:2011: 2024-04-25 09:42:41.057477 - step 92 of 120 - 5575 active elements (425 deactivated) 14:52:25 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:52:25 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:52:25 DEBUG opendrift.models.basemodel:2030: 34.848247818655835 <- latitude -> 35.49550610852338 14:52:25 DEBUG opendrift.models.basemodel:2035: 22.90238320757334 <- longitude -> 23.735962559662894 14:52:25 DEBUG opendrift.models.basemodel:2040: -71.63269513537134 <- z -> 0.0 14:52:25 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:52:25 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:52:25 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:52:25 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:52:25 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:52:25 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:52:25 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5575 elements 14:52:25 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5575 elements 14:52:25 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:52:25 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:52:25 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:52:25 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:52:25 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:52:25 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:52:25 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:52:25 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:52:25 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5575 elements 14:52:25 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5575 elements 14:52:25 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:52:25 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:52:25 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:52:25 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:52:25 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:52:25 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:52:25 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:52:25 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:52:25 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:52:25 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5575 elements 14:52:25 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5575 elements 14:52:25 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:52:25 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-25 09:00:00 (before) 2024-04-25 12:00:00 (after) 14:52:25 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity 14:52:33 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_sea_water_velocity to retrieve y_sea_water_velocity 14:52:38 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:52:38 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values 14:52:38 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values 14:52:38 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity'] 14:52:38 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 18x24x19) for time after (2024-04-25 12:00:00) 14:52:38 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-25 09:00:00) in space (linearNDFast) 14:52:38 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:52:38 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-25 12:00:00) in space (linearNDFast) 14:52:38 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 262 elements, expanding data 1 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 262 elements, expanding data 1 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 262 elements, expanding data 1 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 262 elements, expanding data 1 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 262 elements, expanding data 1 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 262 elements, expanding data 1 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 262 elements, expanding data 1 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 262 elements, expanding data 1 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 262 elements, expanding data 1 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 262 elements, expanding data 1 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 262 elements, expanding data 1 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 262 elements, expanding data 1 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 262 elements, expanding data 1 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 262 elements, expanding data 1 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 262 elements, expanding data 1 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 262 elements, expanding data 1 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 262 elements, expanding data 1 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 262 elements, expanding data 1 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 262 elements, expanding data 1 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 262 elements, expanding data 1 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 262 elements, expanding data 1 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 262 elements, expanding data 1 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 262 elements, expanding data 1 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 262 elements, expanding data 1 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 262 elements, expanding data 1 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 262 elements, expanding data 1 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 262 elements, expanding data 1 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 262 elements, expanding data 1 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 262 elements, expanding data 1 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 262 elements, expanding data 1 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 262 elements, expanding data 1 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 262 elements, expanding data 1 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 262 elements, expanding data 1 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 262 elements, expanding data 1 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 262 elements, expanding data 1 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 262 elements, expanding data 1 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 262 elements, expanding data 1 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 262 elements, expanding data 1 14:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2 14:52:38 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-25 09:00:00, weight 0.76) and after (2024-04-25 12:00:00, weight 0.24) in time 14:52:38 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:52:38 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:52:38 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:52:38 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:52:38 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:52:38 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd 14:52:38 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:52:38 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5575 elements 14:52:38 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 5575 elements 14:52:38 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:52:38 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-25 09:00:00 (before) 2024-04-25 12:00:00 (after) 14:52:38 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_wind to retrieve x_wind 14:52:39 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_wind to retrieve y_wind 14:52:39 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:52:39 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values 14:52:39 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values 14:52:39 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 8x7x1) for time after (2024-04-25 12:00:00) 14:52:39 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-25 09:00:00) in space (linearNDFast) 14:52:39 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:52:39 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-25 12:00:00) in space (linearNDFast) 14:52:39 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:52:39 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-25 09:00:00, weight 0.76) and after (2024-04-25 12:00:00, weight 0.24) in time 14:52:39 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:52:39 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:52:39 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:52:39 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:52:39 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'] 14:52:39 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:52:39 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:52:39 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:52:39 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:52:39 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.304978 (min) 0.0602618 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.393783 (min) 0.0170445 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:905: x_wind: 8.16835 (min) 8.94473 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:905: y_wind: -4.5611 (min) -0.568743 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:52:39 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.774658, mean: 2.058144, max: 2.249712 14:52:39 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:52:39 DEBUG opendrift.models.physics_methods:1058: min: 7.257498, mean: 7.814472, max: 8.171335 14:52:39 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 7.257498, mean: 7.814472, max: 8.171335 14:52:39 DEBUG opendrift.models.basemodel:1667: 2 elements scheduled for deactivation (stranded) 14:52:39 DEBUG opendrift.models.basemodel:1669: (z: 0.000000 to 0.000000) 14:52:39 DEBUG opendrift.models.basemodel:1687: Removed 2 elements. 14:52:39 DEBUG opendrift.models.basemodel:1690: Removed 2 values from environment. 14:52:39 DEBUG opendrift.models.basemodel:1695: remove items from profile for z 14:52:39 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_temperature 14:52:39 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_salinity 14:52:39 DEBUG opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity 14:52:39 DEBUG opendrift.models.basemodel:1699: Removed 2 values from environment_profiles. 14:52:39 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:52:39 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:52:39 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:52:39 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:52:39 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:52:39 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:52:39 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:52:39 DEBUG opendrift.models.physics_methods:1058: min: 7.257498, mean: 7.814578, max: 8.171335 14:52:39 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:52:39 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.026803, dN_50: 0.002103 14:52:39 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:52:39 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.03300134196320089 14:52:39 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:52:39 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:52:39 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:52:39 DEBUG opendrift.models.physics_methods:912: Advecting 175 of 5573 elements above 0.100m with wind-sheared ocean current (0.026020 m/s - 0.286891 m/s) 14:52:39 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:52:39 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0017218328006549152 and 0.45599002512128445 m/s 14:52:39 DEBUG opendrift.models.basemodel:2097: 5573 active elements (427 deactivated) 14:52:39 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:52:39 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:52:39 INFO opendrift.models.basemodel:2011: 2024-04-25 10:42:41.057477 - step 93 of 120 - 5573 active elements (427 deactivated) 14:52:39 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:52:39 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:52:39 DEBUG opendrift.models.basemodel:2030: 34.85066825859741 <- latitude -> 35.487823278136105 14:52:39 DEBUG opendrift.models.basemodel:2035: 22.893014702768504 <- longitude -> 23.742227310248825 14:52:39 DEBUG opendrift.models.basemodel:2040: -70.68981128657694 <- z -> 0.0 14:52:39 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:52:39 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:52:39 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:52:39 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:52:39 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:52:39 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:52:39 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5573 elements 14:52:39 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5573 elements 14:52:39 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:52:39 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:52:39 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:52:39 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:52:39 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:52:39 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:52:39 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:52:39 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:52:39 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5573 elements 14:52:39 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5573 elements 14:52:39 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:52:39 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:52:39 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:52:39 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:52:39 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:52:39 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:52:39 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:52:39 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:52:39 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:52:39 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5573 elements 14:52:39 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5573 elements 14:52:39 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:52:39 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-25 09:00:00 (before) 2024-04-25 12:00:00 (after) 14:52:39 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-25 09:00:00) in space (linearNDFast) 14:52:39 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:52:39 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-25 12:00:00) in space (linearNDFast) 14:52:39 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:52:39 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-25 09:00:00, weight 0.43) and after (2024-04-25 12:00:00, weight 0.57) in time 14:52:39 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:52:39 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:52:39 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:52:39 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:52:39 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:52: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 14:52:39 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:52:39 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5573 elements 14:52: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 5573 elements 14:52:39 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:52:39 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-25 09:00:00 (before) 2024-04-25 12:00:00 (after) 14:52:39 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-25 09:00:00) in space (linearNDFast) 14:52:39 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:52:39 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-25 12:00:00) in space (linearNDFast) 14:52:39 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:52:39 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-25 09:00:00, weight 0.43) and after (2024-04-25 12:00:00, weight 0.57) in time 14:52:39 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:52:39 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:52:39 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:52:39 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:52:39 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'] 14:52:39 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:52:39 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:52:39 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:52:39 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:52:39 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.346447 (min) 0.0950602 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.416228 (min) 0.0164078 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:905: x_wind: 8.59877 (min) 9.32749 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:905: y_wind: -4.86433 (min) -0.539586 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:52:39 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.914100, mean: 2.216815, max: 2.453302 14:52:39 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:52:39 DEBUG opendrift.models.physics_methods:1058: min: 7.537232, mean: 8.110202, max: 8.533065 14:52:39 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 7.537232, mean: 8.110202, max: 8.533065 14:52:39 DEBUG opendrift.models.basemodel:1667: 1 elements scheduled for deactivation (stranded) 14:52:39 DEBUG opendrift.models.basemodel:1669: (z: 0.000000 to 0.000000) 14:52:39 DEBUG opendrift.models.basemodel:1687: Removed 1 elements. 14:52:39 DEBUG opendrift.models.basemodel:1690: Removed 1 values from environment. 14:52:39 DEBUG opendrift.models.basemodel:1695: remove items from profile for z 14:52:39 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_temperature 14:52:39 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_salinity 14:52:39 DEBUG opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity 14:52:39 DEBUG opendrift.models.basemodel:1699: Removed 1 values from environment_profiles. 14:52:39 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:52:39 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:52:39 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:52:39 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:52:39 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:52:39 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:52:39 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:52:39 DEBUG opendrift.models.physics_methods:1058: min: 7.537231, mean: 8.110277, max: 8.533065 14:52:39 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:52:39 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.026581, dN_50: 0.002086 14:52:39 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:52:39 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.03598746012765258 14:52:39 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:52:39 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:52:39 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:52:39 DEBUG opendrift.models.physics_methods:912: Advecting 189 of 5572 elements above 0.100m with wind-sheared ocean current (0.007018 m/s - 0.299591 m/s) 14:52:39 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:52:39 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0010847009971081821 and 0.42064306325669754 m/s 14:52:39 DEBUG opendrift.models.basemodel:2097: 5572 active elements (428 deactivated) 14:52:39 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:52:39 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:52:39 INFO opendrift.models.basemodel:2011: 2024-04-25 11:42:41.057477 - step 94 of 120 - 5572 active elements (428 deactivated) 14:52:39 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:52:39 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:52:39 DEBUG opendrift.models.basemodel:2030: 34.8501144971254 <- latitude -> 35.48067835338546 14:52:39 DEBUG opendrift.models.basemodel:2035: 22.8823471491685 <- longitude -> 23.75036128078395 14:52:39 DEBUG opendrift.models.basemodel:2040: -69.21205895646423 <- z -> 0.0 14:52:39 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:52:39 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:52:39 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:52:39 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:52:39 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:52:39 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:52:39 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5572 elements 14:52:39 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5572 elements 14:52:39 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:52:39 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:52:39 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:52:39 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:52:39 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:52:39 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:52:39 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:52:39 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:52:39 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5572 elements 14:52:39 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5572 elements 14:52:39 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:52:39 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:52:39 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:52:39 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:52:39 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:52:39 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:52:39 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:52:39 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:52:39 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:52:39 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5572 elements 14:52:39 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5572 elements 14:52:39 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:52:39 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-25 09:00:00 (before) 2024-04-25 12:00:00 (after) 14:52:39 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-25 09:00:00) in space (linearNDFast) 14:52:39 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:52:39 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-25 12:00:00) in space (linearNDFast) 14:52:39 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:52:39 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-25 09:00:00, weight 0.10) and after (2024-04-25 12:00:00, weight 0.90) in time 14:52:39 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:52:39 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:52:39 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:52:39 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:52:39 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:52: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 14:52:39 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:52:39 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5572 elements 14:52: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 5572 elements 14:52:39 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:52:39 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-25 09:00:00 (before) 2024-04-25 12:00:00 (after) 14:52:39 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-25 09:00:00) in space (linearNDFast) 14:52:39 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:52:39 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-25 12:00:00) in space (linearNDFast) 14:52:39 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:52:39 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-25 09:00:00, weight 0.10) and after (2024-04-25 12:00:00, weight 0.90) in time 14:52:39 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:52:39 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:52:39 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:52:39 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:52:39 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'] 14:52:39 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:52:39 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:52:39 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:52:39 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:52:39 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.383318 (min) 0.0546648 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.394443 (min) 0.043176 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:905: x_wind: 8.95317 (min) 9.79503 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:905: y_wind: -5.15217 (min) -0.533068 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:52:39 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:52:39 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 2.063495, mean: 2.384675, max: 2.667622 14:52:39 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:52:39 DEBUG opendrift.models.physics_methods:1058: min: 7.825847, mean: 8.411677, max: 8.897986 14:52:39 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 7.825847, mean: 8.411677, max: 8.897986 14:52:39 DEBUG opendrift.models.basemodel:1667: 1 elements scheduled for deactivation (stranded) 14:52:39 DEBUG opendrift.models.basemodel:1669: (z: 0.000000 to 0.000000) 14:52:39 DEBUG opendrift.models.basemodel:1687: Removed 1 elements. 14:52:39 DEBUG opendrift.models.basemodel:1690: Removed 1 values from environment. 14:52:39 DEBUG opendrift.models.basemodel:1695: remove items from profile for z 14:52:39 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_temperature 14:52:39 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_salinity 14:52:39 DEBUG opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity 14:52:39 DEBUG opendrift.models.basemodel:1699: Removed 1 values from environment_profiles. 14:52:39 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:52:39 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:52:39 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:52:39 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:52:39 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:52:39 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:52:39 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:52:39 DEBUG opendrift.models.physics_methods:1058: min: 7.890181, mean: 8.411782, max: 8.897985 14:52:39 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:52:39 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.026371, dN_50: 0.002070 14:52:39 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:52:39 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.039130944108300564 14:52:39 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:52:39 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:52:39 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:52:40 DEBUG opendrift.models.physics_methods:912: Advecting 198 of 5571 elements above 0.100m with wind-sheared ocean current (0.000196 m/s - 0.312403 m/s) 14:52:40 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:52:40 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0019300068455836436 and 0.42533308276956056 m/s 14:52:40 DEBUG opendrift.models.basemodel:2097: 5571 active elements (429 deactivated) 14:52:40 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:52:40 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:52:40 INFO opendrift.models.basemodel:2011: 2024-04-25 12:42:41.057477 - step 95 of 120 - 5571 active elements (429 deactivated) 14:52:40 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:52:40 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:52:40 DEBUG opendrift.models.basemodel:2030: 34.85163874090332 <- latitude -> 35.44751344140392 14:52:40 DEBUG opendrift.models.basemodel:2035: 22.871583565427954 <- longitude -> 23.766157711819805 14:52:40 DEBUG opendrift.models.basemodel:2040: -68.24475110067395 <- z -> 0.0 14:52:40 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:52:40 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:52:40 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:52:40 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:52:40 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:52:40 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:52:40 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5571 elements 14:52:40 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5571 elements 14:52:40 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:52:40 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:52:40 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:52:40 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:52:40 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:52:40 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:52:40 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:52:40 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:52:40 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5571 elements 14:52:40 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5571 elements 14:52:40 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:52:40 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:52:40 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:52:40 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:52:40 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:52:40 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:52:40 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:52:40 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:52:40 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:52:40 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5571 elements 14:52:40 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5571 elements 14:52:40 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:52:40 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-25 12:00:00 (before) 2024-04-25 15:00:00 (after) 14:52:40 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity 14:52:46 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_sea_water_velocity to retrieve y_sea_water_velocity 14:52:51 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:52:52 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values 14:52:52 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values 14:52:52 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity'] 14:52:52 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 19x23x18) for time after (2024-04-25 15:00:00) 14:52:52 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-25 12:00:00) in space (linearNDFast) 14:52:52 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:52:52 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-25 15:00:00) in space (linearNDFast) 14:52:52 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 184 elements, expanding data 1 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 184 elements, expanding data 1 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 184 elements, expanding data 1 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 184 elements, expanding data 1 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 184 elements, expanding data 1 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 184 elements, expanding data 1 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 184 elements, expanding data 1 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 184 elements, expanding data 1 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 184 elements, expanding data 1 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 184 elements, expanding data 1 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 184 elements, expanding data 1 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 184 elements, expanding data 1 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 184 elements, expanding data 1 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 184 elements, expanding data 1 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 184 elements, expanding data 1 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 184 elements, expanding data 1 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 184 elements, expanding data 1 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 184 elements, expanding data 1 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 184 elements, expanding data 1 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 184 elements, expanding data 1 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 184 elements, expanding data 1 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 184 elements, expanding data 1 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 184 elements, expanding data 1 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 184 elements, expanding data 1 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 184 elements, expanding data 1 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 184 elements, expanding data 1 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 184 elements, expanding data 1 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 184 elements, expanding data 1 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 184 elements, expanding data 1 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 184 elements, expanding data 1 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 184 elements, expanding data 1 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 184 elements, expanding data 1 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 184 elements, expanding data 1 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 184 elements, expanding data 1 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 184 elements, expanding data 1 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 184 elements, expanding data 1 14:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2 14:52:52 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-25 12:00:00, weight 0.76) and after (2024-04-25 15:00:00, weight 0.24) in time 14:52:52 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:52:52 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:52:52 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:52:52 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:52:52 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:52: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 14:52:52 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:52:52 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5571 elements 14:52: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 5571 elements 14:52:52 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:52:52 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-25 12:00:00 (before) 2024-04-25 15:00:00 (after) 14:52:52 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_wind to retrieve x_wind 14:52:52 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_wind to retrieve y_wind 14:52:52 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:52:52 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values 14:52:52 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values 14:52:52 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 8x7x1) for time after (2024-04-25 15:00:00) 14:52:52 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-25 12:00:00) in space (linearNDFast) 14:52:52 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:52:52 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-25 15:00:00) in space (linearNDFast) 14:52:52 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:52:52 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-25 12:00:00, weight 0.76) and after (2024-04-25 15:00:00, weight 0.24) in time 14:52:52 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:52:52 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:52:52 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:52:52 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:52: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'] 14:52:52 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:52:52 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:52:52 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:52:52 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:52:52 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.395479 (min) 0.0225148 (max) 14:52:52 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.39531 (min) 0.0494805 (max) 14:52:52 DEBUG opendrift.models.basemodel.environment:905: x_wind: 8.96107 (min) 9.8668 (max) 14:52:52 DEBUG opendrift.models.basemodel.environment:905: y_wind: -5.26858 (min) -1.39471 (max) 14:52:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:52:52 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:52:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:52:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:52:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:52:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:52:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:52:52 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:52:52 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:52:52 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:52:52 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:52:52 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:52:52 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:52:52 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:52:52 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:52:52 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:52:52 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:52:52 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 2.095910, mean: 2.392019, max: 2.739053 14:52:52 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:52:52 DEBUG opendrift.models.physics_methods:1058: min: 7.887074, mean: 8.424822, max: 9.016330 14:52:52 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 7.887074, mean: 8.424822, max: 9.016330 14:52:52 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:52:52 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:52:52 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:52:52 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:52:52 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:52:52 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:52:52 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:52:52 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:52:52 DEBUG opendrift.models.physics_methods:1058: min: 7.887074, mean: 8.424823, max: 9.016330 14:52:52 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:52:52 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.026689, dN_50: 0.002095 14:52:52 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:52:52 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.040178651055742066 14:52:52 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:52:52 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:52:52 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:52:52 DEBUG opendrift.models.physics_methods:912: Advecting 209 of 5571 elements above 0.100m with wind-sheared ocean current (0.017082 m/s - 0.316558 m/s) 14:52:52 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:52:52 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.002459899870994967 and 0.5218761990897481 m/s 14:52:52 DEBUG opendrift.models.basemodel:2097: 5571 active elements (429 deactivated) 14:52:52 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:52:52 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:52:52 INFO opendrift.models.basemodel:2011: 2024-04-25 13:42:41.057477 - step 96 of 120 - 5571 active elements (429 deactivated) 14:52:52 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:52:52 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:52:52 DEBUG opendrift.models.basemodel:2030: 34.843219839392034 <- latitude -> 35.432077933416245 14:52:52 DEBUG opendrift.models.basemodel:2035: 22.86019528411393 <- longitude -> 23.764825782546207 14:52:52 DEBUG opendrift.models.basemodel:2040: -67.19526373853972 <- z -> 0.0 14:52:52 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:52:52 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:52:52 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:52:52 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:52:52 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:52:52 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:52:52 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5571 elements 14:52:52 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5571 elements 14:52:52 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:52:52 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:52:52 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:52:52 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:52:52 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:52:52 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:52:52 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:52:52 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:52:52 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5571 elements 14:52:52 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5571 elements 14:52:52 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:52:52 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:52:52 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:52:52 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:52:52 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:52:52 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:52:52 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:52:52 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:52:52 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:52:52 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5571 elements 14:52:52 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5571 elements 14:52:52 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:52:52 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-25 12:00:00 (before) 2024-04-25 15:00:00 (after) 14:52:52 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-25 12:00:00) in space (linearNDFast) 14:52:52 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:52:52 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-25 15:00:00) in space (linearNDFast) 14:52:52 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:52:52 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-25 12:00:00, weight 0.43) and after (2024-04-25 15:00:00, weight 0.57) in time 14:52:52 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:52:52 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:52:52 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:52:52 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:52:52 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:52: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 14:52:52 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:52:52 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5571 elements 14:52: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 5571 elements 14:52:52 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:52:52 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-25 12:00:00 (before) 2024-04-25 15:00:00 (after) 14:52:52 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-25 12:00:00) in space (linearNDFast) 14:52:52 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:52:52 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-25 15:00:00) in space (linearNDFast) 14:52:52 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:52:52 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-25 12:00:00, weight 0.43) and after (2024-04-25 15:00:00, weight 0.57) in time 14:52:52 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:52:52 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:52:52 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:52:52 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:52: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'] 14:52:52 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:52:52 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:52:52 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:52:52 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:52:52 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.393905 (min) 0.044113 (max) 14:52:52 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.311141 (min) 0.087346 (max) 14:52:52 DEBUG opendrift.models.basemodel.environment:905: x_wind: 8.67323 (min) 9.86476 (max) 14:52:52 DEBUG opendrift.models.basemodel.environment:905: y_wind: -5.3099 (min) -1.82404 (max) 14:52:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:52:52 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:52:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:52:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:52:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:52:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:52:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:52:52 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:52:52 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:52:52 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:52:52 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:52:52 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:52:52 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:52:52 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:52:52 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:52:52 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:52:52 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:52:52 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 2.048821, mean: 2.332242, max: 2.752144 14:52:52 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:52:52 DEBUG opendrift.models.physics_methods:1058: min: 7.797970, mean: 8.319072, max: 9.037851 14:52:52 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 7.797970, mean: 8.319072, max: 9.037851 14:52:52 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:52:52 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:52:52 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:52:52 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:52:52 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:52:52 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:52:52 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:52:52 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:52:52 DEBUG opendrift.models.physics_methods:1058: min: 7.797970, mean: 8.319073, max: 9.037851 14:52:52 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:52:52 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.027222, dN_50: 0.002136 14:52:52 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:52:52 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.040370663088489515 14:52:52 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:52:52 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:52:52 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:52:52 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 197 surface elements 14:52:52 DEBUG opendrift.models.physics_methods:912: Advecting 216 of 5571 elements above 0.100m with wind-sheared ocean current (0.015197 m/s - 0.317314 m/s) 14:52:52 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:52:52 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0022684768773617928 and 0.4504608456476048 m/s 14:52:52 DEBUG opendrift.models.basemodel:2097: 5571 active elements (429 deactivated) 14:52:52 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:52:52 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:52:52 INFO opendrift.models.basemodel:2011: 2024-04-25 14:42:41.057477 - step 97 of 120 - 5571 active elements (429 deactivated) 14:52:52 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:52:52 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:52:52 DEBUG opendrift.models.basemodel:2030: 34.8378131898552 <- latitude -> 35.42606167643969 14:52:52 DEBUG opendrift.models.basemodel:2035: 22.85814563545953 <- longitude -> 23.775973368886238 14:52:52 DEBUG opendrift.models.basemodel:2040: -66.21405449606428 <- z -> 0.0 14:52:52 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:52:52 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:52:52 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:52:52 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:52:52 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:52:52 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:52:52 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5571 elements 14:52:52 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5571 elements 14:52:52 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:52:52 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:52:52 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:52:52 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:52:52 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:52:52 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:52:52 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:52:52 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:52:52 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5571 elements 14:52:52 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5571 elements 14:52:52 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:52:52 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:52:52 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:52:52 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:52:52 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:52:52 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:52:52 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:52:52 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:52:52 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:52:52 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5571 elements 14:52:52 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5571 elements 14:52:52 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:52:52 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-25 12:00:00 (before) 2024-04-25 15:00:00 (after) 14:52:52 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-25 12:00:00) in space (linearNDFast) 14:52:52 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:52:52 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-25 15:00:00) in space (linearNDFast) 14:52:52 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:52:52 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-25 12:00:00, weight 0.10) and after (2024-04-25 15:00:00, weight 0.90) in time 14:52:52 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:52:52 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:52:52 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:52:52 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:52:52 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:52: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 14:52:52 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:52:52 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5571 elements 14:52: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 5571 elements 14:52:52 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:52:52 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-25 12:00:00 (before) 2024-04-25 15:00:00 (after) 14:52:53 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-25 12:00:00) in space (linearNDFast) 14:52:53 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:52:53 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-25 15:00:00) in space (linearNDFast) 14:52:53 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:52:53 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-25 12:00:00, weight 0.10) and after (2024-04-25 15:00:00, weight 0.90) in time 14:52:53 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:52:53 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:52:53 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:52:53 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:52: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'] 14:52:53 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:52:53 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:52:53 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:52:53 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:52:53 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.396074 (min) 0.0694875 (max) 14:52:53 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.264155 (min) 0.108233 (max) 14:52:53 DEBUG opendrift.models.basemodel.environment:905: x_wind: 8.38889 (min) 9.90807 (max) 14:52:53 DEBUG opendrift.models.basemodel.environment:905: y_wind: -5.3328 (min) -2.19014 (max) 14:52:53 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:52:53 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:52:53 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:52:53 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:52:53 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:52:53 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:52:53 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:52:53 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:52:53 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:52:53 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:52:53 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:52:53 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:52:53 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:52:53 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:52:53 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:52:53 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:52:53 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:52:53 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 2.004558, mean: 2.273455, max: 2.808095 14:52:53 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:52:53 DEBUG opendrift.models.physics_methods:1058: min: 7.713276, mean: 8.213607, max: 9.129258 14:52:53 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 7.713276, mean: 8.213607, max: 9.129258 14:52:53 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:52:53 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:52:53 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:52:53 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:52:53 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:52:53 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:52:53 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:52:53 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:52:53 DEBUG opendrift.models.physics_methods:1058: min: 7.713276, mean: 8.213606, max: 9.129258 14:52:53 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:52:53 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.027753, dN_50: 0.002178 14:52:53 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:52:53 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.04119130634093145 14:52:53 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:52:53 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:52:53 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:52:53 DEBUG opendrift.models.physics_methods:912: Advecting 221 of 5571 elements above 0.100m with wind-sheared ocean current (0.123481 m/s - 0.320523 m/s) 14:52:53 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:52:53 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0025790103435484285 and 0.4133481733866489 m/s 14:52:53 DEBUG opendrift.models.basemodel:2097: 5571 active elements (429 deactivated) 14:52:53 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:52:53 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:52:53 INFO opendrift.models.basemodel:2011: 2024-04-25 15:42:41.057477 - step 98 of 120 - 5571 active elements (429 deactivated) 14:52:53 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:52:53 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:52:53 DEBUG opendrift.models.basemodel:2030: 34.84024204706199 <- latitude -> 35.42137653896536 14:52:53 DEBUG opendrift.models.basemodel:2035: 22.85272136563918 <- longitude -> 23.79058739762114 14:52:53 DEBUG opendrift.models.basemodel:2040: -65.41816535132894 <- z -> 0.0 14:52:53 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:52:53 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:52:53 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:52:53 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:52:53 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:52:53 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:52:53 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5571 elements 14:52:53 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5571 elements 14:52:53 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:52:53 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:52:53 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:52:53 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:52:53 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:52:53 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:52:53 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:52:53 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:52:53 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5571 elements 14:52:53 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5571 elements 14:52:53 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:52:53 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:52:53 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:52:53 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:52:53 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:52:53 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:52:53 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:52:53 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:52:53 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:52:53 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5571 elements 14:52:53 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5571 elements 14:52:53 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:52:53 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-25 15:00:00 (before) 2024-04-25 18:00:00 (after) 14:52:53 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity 14:52:59 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_sea_water_velocity to retrieve y_sea_water_velocity 14:53:04 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:53:04 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values 14:53:04 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values 14:53:04 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity'] 14:53:04 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 20x23x18) for time after (2024-04-25 18:00:00) 14:53:04 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-25 15:00:00) in space (linearNDFast) 14:53:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:04 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-25 18:00:00) in space (linearNDFast) 14:53:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 155 elements, expanding data 1 14:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 155 elements, expanding data 1 14:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 155 elements, expanding data 1 14:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 155 elements, expanding data 1 14:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 155 elements, expanding data 1 14:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 155 elements, expanding data 1 14:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 155 elements, expanding data 1 14:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 155 elements, expanding data 1 14:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 155 elements, expanding data 1 14:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 155 elements, expanding data 1 14:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 155 elements, expanding data 1 14:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 155 elements, expanding data 1 14:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 155 elements, expanding data 1 14:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 155 elements, expanding data 1 14:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 155 elements, expanding data 1 14:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 155 elements, expanding data 1 14:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 155 elements, expanding data 1 14:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 155 elements, expanding data 1 14:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 155 elements, expanding data 1 14:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 155 elements, expanding data 1 14:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 155 elements, expanding data 1 14:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 155 elements, expanding data 1 14:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 155 elements, expanding data 1 14:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 155 elements, expanding data 1 14:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 155 elements, expanding data 1 14:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 155 elements, expanding data 1 14:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 155 elements, expanding data 1 14:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 155 elements, expanding data 1 14:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 155 elements, expanding data 1 14:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 155 elements, expanding data 1 14:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 155 elements, expanding data 1 14:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 155 elements, expanding data 1 14:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 155 elements, expanding data 1 14:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 155 elements, expanding data 1 14:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 155 elements, expanding data 1 14:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 155 elements, expanding data 1 14:53:04 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-25 15:00:00, weight 0.76) and after (2024-04-25 18:00:00, weight 0.24) in time 14:53:04 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:04 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:04 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:04 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:53:04 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53: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 14:53:04 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:04 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5571 elements 14:53: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 5571 elements 14:53:04 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:53:04 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-25 15:00:00 (before) 2024-04-25 18:00:00 (after) 14:53:04 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_wind to retrieve x_wind 14:53:04 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_wind to retrieve y_wind 14:53:04 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:53:04 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values 14:53:04 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values 14:53:04 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 8x7x1) for time after (2024-04-25 18:00:00) 14:53:04 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-25 15:00:00) in space (linearNDFast) 14:53:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:04 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-25 18:00:00) in space (linearNDFast) 14:53:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:04 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-25 15:00:00, weight 0.76) and after (2024-04-25 18:00:00, weight 0.24) in time 14:53:04 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:04 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:04 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:53:04 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:53: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'] 14:53:04 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:53:04 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:53:04 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:53:04 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:53:04 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.367275 (min) 0.0676309 (max) 14:53:04 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.262259 (min) 0.109222 (max) 14:53:04 DEBUG opendrift.models.basemodel.environment:905: x_wind: 8.29376 (min) 9.78276 (max) 14:53:04 DEBUG opendrift.models.basemodel.environment:905: y_wind: -5.08182 (min) -2.26256 (max) 14:53:04 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:53:04 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:53:04 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:53:04 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:53:04 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:53:04 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:53:04 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:53:04 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:53:04 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:53:04 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:53:04 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:53:04 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:53:04 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:53:04 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:53:04 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:53:04 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:53:04 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:53:04 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.975197, mean: 2.201724, max: 2.754224 14:53:04 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:53:04 DEBUG opendrift.models.physics_methods:1058: min: 7.656580, mean: 8.083060, max: 9.041266 14:53:04 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 7.656580, mean: 8.083060, max: 9.041266 14:53:04 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:53:04 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:53:04 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:53:04 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:53:04 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:53:04 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:53:04 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:53:04 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:53:04 DEBUG opendrift.models.physics_methods:1058: min: 7.656580, mean: 8.083060, max: 9.041265 14:53:04 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:53:04 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.028340, dN_50: 0.002224 14:53:04 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:53:04 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.040401166707661244 14:53:04 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:53:04 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:53:04 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:53:04 DEBUG opendrift.models.physics_methods:912: Advecting 236 of 5571 elements above 0.100m with wind-sheared ocean current (0.028263 m/s - 0.317434 m/s) 14:53:04 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:53:05 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.000595739921083441 and 0.4549804042329546 m/s 14:53:05 DEBUG opendrift.models.basemodel:2097: 5571 active elements (429 deactivated) 14:53:05 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:53:05 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:53:05 INFO opendrift.models.basemodel:2011: 2024-04-25 16:42:41.057477 - step 99 of 120 - 5571 active elements (429 deactivated) 14:53:05 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:53:05 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:53:05 DEBUG opendrift.models.basemodel:2030: 34.83980760856188 <- latitude -> 35.41457286408932 14:53:05 DEBUG opendrift.models.basemodel:2035: 22.847036625969164 <- longitude -> 23.805484282005253 14:53:05 DEBUG opendrift.models.basemodel:2040: -64.18141599875736 <- z -> 0.0 14:53:05 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:53:05 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:05 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:53:05 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53:05 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:53:05 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:05 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5571 elements 14:53:05 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5571 elements 14:53:05 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:53:05 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:05 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:05 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:05 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:53:05 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53:05 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:53:05 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:05 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5571 elements 14:53:05 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5571 elements 14:53:05 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:53:05 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:53:05 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:05 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:05 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:05 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:53:05 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53:05 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:53:05 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:05 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5571 elements 14:53:05 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5571 elements 14:53:05 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:53:05 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-25 15:00:00 (before) 2024-04-25 18:00:00 (after) 14:53:05 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-25 15:00:00) in space (linearNDFast) 14:53:05 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:05 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-25 18:00:00) in space (linearNDFast) 14:53:05 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:05 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-25 15:00:00, weight 0.43) and after (2024-04-25 18:00:00, weight 0.57) in time 14:53:05 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:05 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:05 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:05 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:53:05 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53: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 14:53:05 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:05 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5571 elements 14:53: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 5571 elements 14:53:05 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:53:05 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-25 15:00:00 (before) 2024-04-25 18:00:00 (after) 14:53:05 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-25 15:00:00) in space (linearNDFast) 14:53:05 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:05 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-25 18:00:00) in space (linearNDFast) 14:53:05 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:05 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-25 15:00:00, weight 0.43) and after (2024-04-25 18:00:00, weight 0.57) in time 14:53:05 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:05 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:05 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:53:05 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:53: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'] 14:53:05 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:53:05 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:53:05 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:53:05 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:53:05 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.339194 (min) 0.0552513 (max) 14:53:05 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.15891 (min) 0.114019 (max) 14:53:05 DEBUG opendrift.models.basemodel.environment:905: x_wind: 8.27726 (min) 9.53328 (max) 14:53:05 DEBUG opendrift.models.basemodel.environment:905: y_wind: -4.70443 (min) -2.20313 (max) 14:53:05 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:53:05 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:53:05 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:53:05 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:53:05 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:53:05 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:53:05 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:53:05 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:53:05 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:53:05 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:53:05 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:53:05 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:53:05 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:53:05 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:53:05 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max) 14:53:05 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:53:05 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:53:05 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.951457, mean: 2.127833, max: 2.642326 14:53:05 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:53:05 DEBUG opendrift.models.physics_methods:1058: min: 7.610427, mean: 7.946297, max: 8.855697 14:53:05 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 7.610427, mean: 7.946297, max: 8.855697 14:53:05 DEBUG opendrift.models.basemodel:1667: 1 elements scheduled for deactivation (stranded) 14:53:05 DEBUG opendrift.models.basemodel:1669: (z: 0.000000 to 0.000000) 14:53:05 DEBUG opendrift.models.basemodel:1687: Removed 1 elements. 14:53:05 DEBUG opendrift.models.basemodel:1690: Removed 1 values from environment. 14:53:05 DEBUG opendrift.models.basemodel:1695: remove items from profile for z 14:53:05 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_temperature 14:53:05 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_salinity 14:53:05 DEBUG opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity 14:53:05 DEBUG opendrift.models.basemodel:1699: Removed 1 values from environment_profiles. 14:53:05 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:53:05 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:53:05 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:53:05 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:53:05 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:53:05 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:53:05 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:53:05 DEBUG opendrift.models.physics_methods:1058: min: 7.610427, mean: 7.946326, max: 8.855697 14:53:05 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:53:05 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.028944, dN_50: 0.002272 14:53:05 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:53:05 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.03875992251015488 14:53:05 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:53:05 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:53:05 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:53:05 DEBUG opendrift.models.physics_methods:912: Advecting 244 of 5570 elements above 0.100m with wind-sheared ocean current (0.026467 m/s - 0.310919 m/s) 14:53:05 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:53:05 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0016252724971848917 and 0.43307925181832896 m/s 14:53:05 DEBUG opendrift.models.basemodel:2097: 5570 active elements (430 deactivated) 14:53:05 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:53:05 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:53:05 INFO opendrift.models.basemodel:2011: 2024-04-25 17:42:41.057477 - step 100 of 120 - 5570 active elements (430 deactivated) 14:53:05 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:53:05 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:53:05 DEBUG opendrift.models.basemodel:2030: 34.83666144755087 <- latitude -> 35.414459385161564 14:53:05 DEBUG opendrift.models.basemodel:2035: 22.843628992899145 <- longitude -> 23.81895964552776 14:53:05 DEBUG opendrift.models.basemodel:2040: -63.64724207129762 <- z -> 0.0 14:53:05 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:53:05 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:05 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:53:05 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53:05 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:53:05 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:05 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5570 elements 14:53:05 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5570 elements 14:53:05 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:53:05 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:05 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:05 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:05 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:53:05 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53:05 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:53:05 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:05 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5570 elements 14:53:05 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5570 elements 14:53:05 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:53:05 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:53:05 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:05 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:05 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:05 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:53:05 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53:05 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:53:05 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:05 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5570 elements 14:53:05 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5570 elements 14:53:05 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:53:05 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-25 15:00:00 (before) 2024-04-25 18:00:00 (after) 14:53:05 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-25 15:00:00) in space (linearNDFast) 14:53:05 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:05 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-25 18:00:00) in space (linearNDFast) 14:53:05 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:05 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-25 15:00:00, weight 0.10) and after (2024-04-25 18:00:00, weight 0.90) in time 14:53:05 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:05 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:05 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:05 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:53:05 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53: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 14:53:05 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:05 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5570 elements 14:53: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 5570 elements 14:53:05 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:53:05 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-25 15:00:00 (before) 2024-04-25 18:00:00 (after) 14:53:05 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-25 15:00:00) in space (linearNDFast) 14:53:05 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:05 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-25 18:00:00) in space (linearNDFast) 14:53:05 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:05 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-25 15:00:00, weight 0.10) and after (2024-04-25 18:00:00, weight 0.90) in time 14:53:05 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:05 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:05 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:53:05 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:53: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'] 14:53:05 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:53:05 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:53:05 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:53:05 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:53:05 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.318482 (min) 0.0423921 (max) 14:53:05 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.171508 (min) 0.116653 (max) 14:53:05 DEBUG opendrift.models.basemodel.environment:905: x_wind: 8.22671 (min) 9.31641 (max) 14:53:05 DEBUG opendrift.models.basemodel.environment:905: y_wind: -4.31527 (min) -2.13827 (max) 14:53:05 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:53:05 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:53:05 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:53:05 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:53:05 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:53:05 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:53:05 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:53:05 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:53:05 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:53:05 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:53:05 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:53:05 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:53:05 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:53:05 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:53:05 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:53:05 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:53:05 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:53:05 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.924478, mean: 2.057821, max: 2.549632 14:53:05 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:53:05 DEBUG opendrift.models.physics_methods:1058: min: 7.557637, mean: 7.814431, max: 8.698980 14:53:05 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 7.557637, mean: 7.814431, max: 8.698980 14:53:05 INFO opendrift.export.io_netcdf:116: Wrote 100 steps to file oil.nc 14:53:06 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:53:06 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:53:06 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:53:06 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:53:06 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:53:06 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:53:06 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:53:06 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:53:06 DEBUG opendrift.models.physics_methods:1058: min: 7.557637, mean: 7.814431, max: 8.698979 14:53:06 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:53:06 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.029551, dN_50: 0.002319 14:53:06 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:53:06 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.03740035730637546 14:53:06 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:53:06 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:53:06 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:53:06 DEBUG opendrift.models.physics_methods:912: Advecting 250 of 5570 elements above 0.100m with wind-sheared ocean current (0.035945 m/s - 0.305416 m/s) 14:53:06 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:53:06 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0017377653911615626 and 0.4458326751452106 m/s 14:53:06 DEBUG opendrift.models.basemodel:2097: 5570 active elements (430 deactivated) 14:53:06 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:53:06 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:53:06 INFO opendrift.models.basemodel:2011: 2024-04-25 18:42:41.057477 - step 101 of 120 - 5570 active elements (430 deactivated) 14:53:06 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:53:06 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:53:06 DEBUG opendrift.models.basemodel:2030: 34.835200977871075 <- latitude -> 35.4128106537286 14:53:06 DEBUG opendrift.models.basemodel:2035: 22.839316396596807 <- longitude -> 23.82671322551419 14:53:06 DEBUG opendrift.models.basemodel:2040: -62.72614110040375 <- z -> 0.0 14:53:06 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:53:06 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:06 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:53:06 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53:06 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:53:06 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:06 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5570 elements 14:53:06 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5570 elements 14:53:06 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:53:06 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:06 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:06 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:06 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:53:06 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53:06 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:53:06 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:06 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5570 elements 14:53:06 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5570 elements 14:53:06 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:53:06 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:53:06 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:06 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:06 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:06 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:53:06 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53:06 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:53:06 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:06 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5570 elements 14:53:06 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5570 elements 14:53:06 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:53:06 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-25 18:00:00 (before) 2024-04-25 21:00:00 (after) 14:53:06 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity 14:53:10 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_sea_water_velocity to retrieve y_sea_water_velocity 14:53:15 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:53:15 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values 14:53:15 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values 14:53:15 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity'] 14:53:15 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 20x23x18) for time after (2024-04-25 21:00:00) 14:53:15 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-25 18:00:00) in space (linearNDFast) 14:53:15 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:15 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-25 21:00:00) in space (linearNDFast) 14:53:15 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 1 14:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 1 14:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 1 14:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 1 14:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 1 14:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 1 14:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 1 14:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 1 14:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 1 14:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 1 14:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 1 14:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 1 14:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 1 14:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 1 14:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 1 14:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 1 14:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 1 14:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 1 14:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 1 14:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 1 14:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 1 14:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 1 14:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 1 14:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 1 14:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 1 14:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 1 14:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 1 14:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 1 14:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 1 14:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 1 14:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 1 14:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 1 14:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 1 14:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 1 14:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 1 14:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 1 14:53:15 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-25 18:00:00, weight 0.76) and after (2024-04-25 21:00:00, weight 0.24) in time 14:53:15 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:15 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:15 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:15 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:53:15 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53: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 14:53:15 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:15 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5570 elements 14:53: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 5570 elements 14:53:15 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:53:15 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-25 18:00:00 (before) 2024-04-25 21:00:00 (after) 14:53:15 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_wind to retrieve x_wind 14:53:15 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_wind to retrieve y_wind 14:53:15 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:53:15 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values 14:53:15 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values 14:53:15 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 8x7x1) for time after (2024-04-25 21:00:00) 14:53:15 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-25 18:00:00) in space (linearNDFast) 14:53:15 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:15 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-25 21:00:00) in space (linearNDFast) 14:53:15 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:15 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-25 18:00:00, weight 0.76) and after (2024-04-25 21:00:00, weight 0.24) in time 14:53:15 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:15 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:15 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:53:15 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:53: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'] 14:53:15 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:53:15 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:53:15 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:53:15 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:53:15 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.288385 (min) 0.0507889 (max) 14:53:15 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.181877 (min) 0.115707 (max) 14:53:15 DEBUG opendrift.models.basemodel.environment:905: x_wind: 8.13597 (min) 9.22717 (max) 14:53:15 DEBUG opendrift.models.basemodel.environment:905: y_wind: -4.2423 (min) -2.10867 (max) 14:53:15 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:53:15 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:53:15 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:53:15 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:53:15 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:53:15 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:53:15 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:53:15 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:53:15 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:53:15 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:53:15 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:53:15 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:53:15 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:53:15 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:53:15 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:53:15 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:53:15 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:53:15 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.906498, mean: 2.015687, max: 2.516645 14:53:15 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:53:15 DEBUG opendrift.models.physics_methods:1058: min: 7.522250, mean: 7.733913, max: 8.642523 14:53:15 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 7.522250, mean: 7.733913, max: 8.642523 14:53:15 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:53:15 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:53:15 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:53:15 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:53:15 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:53:15 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:53:15 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:53:15 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:53:15 DEBUG opendrift.models.physics_methods:1058: min: 7.522250, mean: 7.733913, max: 8.642523 14:53:15 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:53:15 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.030056, dN_50: 0.002359 14:53:15 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:53:15 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.03691653013737693 14:53:15 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:53:15 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:53:15 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:53:15 DEBUG opendrift.models.physics_methods:912: Advecting 262 of 5570 elements above 0.100m with wind-sheared ocean current (0.022892 m/s - 0.303434 m/s) 14:53:15 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:53:15 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0030944899380531007 and 0.4281095324569743 m/s 14:53:15 DEBUG opendrift.models.basemodel:2097: 5570 active elements (430 deactivated) 14:53:15 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:53:15 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:53:15 INFO opendrift.models.basemodel:2011: 2024-04-25 19:42:41.057477 - step 102 of 120 - 5570 active elements (430 deactivated) 14:53:15 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:53:15 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:53:15 DEBUG opendrift.models.basemodel:2030: 34.83273253643721 <- latitude -> 35.40661398316789 14:53:15 DEBUG opendrift.models.basemodel:2035: 22.830017369276604 <- longitude -> 23.836592543091978 14:53:15 DEBUG opendrift.models.basemodel:2040: -62.06600731540703 <- z -> 0.0 14:53:15 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:53:15 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:15 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:53:15 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53:15 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:53:15 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:15 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5570 elements 14:53:15 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5570 elements 14:53:15 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:53:15 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:15 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:15 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:15 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:53:15 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53:15 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:53:15 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:15 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5570 elements 14:53:15 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5570 elements 14:53:15 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:53:15 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:53:15 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:15 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:15 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:15 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:53:15 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53:15 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:53:15 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:15 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5570 elements 14:53:15 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5570 elements 14:53:15 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:53:15 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-25 18:00:00 (before) 2024-04-25 21:00:00 (after) 14:53:15 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-25 18:00:00) in space (linearNDFast) 14:53:15 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:15 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-25 21:00:00) in space (linearNDFast) 14:53:15 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:15 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-25 18:00:00, weight 0.43) and after (2024-04-25 21:00:00, weight 0.57) in time 14:53:15 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:15 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:15 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:15 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:53:15 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53: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 14:53:15 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:15 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5570 elements 14:53: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 5570 elements 14:53:15 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:53:15 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-25 18:00:00 (before) 2024-04-25 21:00:00 (after) 14:53:15 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-25 18:00:00) in space (linearNDFast) 14:53:15 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:15 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-25 21:00:00) in space (linearNDFast) 14:53:15 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:15 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-25 18:00:00, weight 0.43) and after (2024-04-25 21:00:00, weight 0.57) in time 14:53:15 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:15 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:15 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:53:15 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:53: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'] 14:53:15 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:53:15 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:53:15 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:53:15 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:53:15 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.257772 (min) 0.0656219 (max) 14:53:15 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.137885 (min) 0.126546 (max) 14:53:15 DEBUG opendrift.models.basemodel.environment:905: x_wind: 8.04003 (min) 9.18508 (max) 14:53:15 DEBUG opendrift.models.basemodel.environment:905: y_wind: -4.28993 (min) -2.09435 (max) 14:53:15 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:53:15 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:53:15 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:53:15 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:53:15 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:53:15 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:53:15 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:53:15 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:53:15 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:53:15 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:53:15 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:53:15 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:53:15 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:53:15 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:53:15 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:53:15 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:53:15 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:53:15 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.867898, mean: 1.983877, max: 2.499128 14:53:15 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:53:15 DEBUG opendrift.models.physics_methods:1058: min: 7.445711, mean: 7.672515, max: 8.612392 14:53:15 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 7.445711, mean: 7.672515, max: 8.612392 14:53:15 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:53:15 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:53:15 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:53:15 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:53:15 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:53:15 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:53:15 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:53:15 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:53:15 DEBUG opendrift.models.physics_methods:1058: min: 7.445711, mean: 7.672515, max: 8.612392 14:53:15 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:53:15 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.030519, dN_50: 0.002395 14:53:15 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:53:15 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.03665960448509759 14:53:15 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:53:15 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:53:15 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:53:15 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 253 surface elements 14:53:16 DEBUG opendrift.models.physics_methods:912: Advecting 266 of 5570 elements above 0.100m with wind-sheared ocean current (0.087105 m/s - 0.302376 m/s) 14:53:16 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:53:16 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0013348043924907163 and 0.4382158204157031 m/s 14:53:16 DEBUG opendrift.models.basemodel:2097: 5570 active elements (430 deactivated) 14:53:16 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:53:16 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:53:16 INFO opendrift.models.basemodel:2011: 2024-04-25 20:42:41.057477 - step 103 of 120 - 5570 active elements (430 deactivated) 14:53:16 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:53:16 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:53:16 DEBUG opendrift.models.basemodel:2030: 34.835379038253684 <- latitude -> 35.401525352617234 14:53:16 DEBUG opendrift.models.basemodel:2035: 22.819853736924127 <- longitude -> 23.85125211505157 14:53:16 DEBUG opendrift.models.basemodel:2040: -61.10401277861389 <- z -> 0.0 14:53:16 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:53:16 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:16 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:53:16 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53:16 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:53:16 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:16 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5570 elements 14:53:16 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5570 elements 14:53:16 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:53:16 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:16 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:16 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:16 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:53:16 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53:16 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:53:16 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:16 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5570 elements 14:53:16 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5570 elements 14:53:16 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:53:16 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:53:16 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:16 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:16 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:16 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:53:16 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53:16 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:53:16 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:16 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5570 elements 14:53:16 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5570 elements 14:53:16 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:53:16 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-25 18:00:00 (before) 2024-04-25 21:00:00 (after) 14:53:16 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-25 18:00:00) in space (linearNDFast) 14:53:16 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:16 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-25 21:00:00) in space (linearNDFast) 14:53:16 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:16 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-25 18:00:00, weight 0.10) and after (2024-04-25 21:00:00, weight 0.90) in time 14:53:16 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:16 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:16 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:16 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:53:16 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53: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 14:53:16 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:16 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5570 elements 14:53: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 5570 elements 14:53:16 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:53:16 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-25 18:00:00 (before) 2024-04-25 21:00:00 (after) 14:53:16 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-25 18:00:00) in space (linearNDFast) 14:53:16 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:16 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-25 21:00:00) in space (linearNDFast) 14:53:16 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:16 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-25 18:00:00, weight 0.10) and after (2024-04-25 21:00:00, weight 0.90) in time 14:53:16 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:16 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:16 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:53:16 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:53: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'] 14:53:16 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:53:16 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:53:16 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:53:16 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:53:16 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.23369 (min) 0.0867573 (max) 14:53:16 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.134863 (min) 0.151258 (max) 14:53:16 DEBUG opendrift.models.basemodel.environment:905: x_wind: 7.93709 (min) 9.20247 (max) 14:53:16 DEBUG opendrift.models.basemodel.environment:905: y_wind: -4.33177 (min) -2.07418 (max) 14:53:16 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:53:16 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:53:16 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:53:16 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:53:16 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:53:16 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:53:16 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:53:16 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:53:16 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:53:16 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:53:16 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:53:16 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:53:16 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:53:16 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:53:16 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:53:16 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:53:16 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:53:16 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.824591, mean: 1.952267, max: 2.528054 14:53:16 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:53:16 DEBUG opendrift.models.physics_methods:1058: min: 7.358892, mean: 7.610987, max: 8.662090 14:53:16 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 7.358892, mean: 7.610987, max: 8.662090 14:53:16 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:53:16 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:53:16 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:53:16 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:53:16 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:53:16 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:53:16 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:53:16 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:53:16 DEBUG opendrift.models.physics_methods:1058: min: 7.358891, mean: 7.610987, max: 8.662090 14:53:16 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:53:16 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.030978, dN_50: 0.002431 14:53:16 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:53:16 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.03708386286658738 14:53:16 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:53:16 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:53:16 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:53:16 DEBUG opendrift.models.physics_methods:912: Advecting 282 of 5570 elements above 0.100m with wind-sheared ocean current (0.008018 m/s - 0.304121 m/s) 14:53:16 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:53:16 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0011988854950573352 and 0.46589585653901494 m/s 14:53:16 DEBUG opendrift.models.basemodel:2097: 5570 active elements (430 deactivated) 14:53:16 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:53:16 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:53:16 INFO opendrift.models.basemodel:2011: 2024-04-25 21:42:41.057477 - step 104 of 120 - 5570 active elements (430 deactivated) 14:53:16 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:53:16 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:53:16 DEBUG opendrift.models.basemodel:2030: 34.83665574703225 <- latitude -> 35.39693039366479 14:53:16 DEBUG opendrift.models.basemodel:2035: 22.820618159245807 <- longitude -> 23.858739206748695 14:53:16 DEBUG opendrift.models.basemodel:2040: -60.44453966345988 <- z -> 0.0 14:53:16 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:53:16 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:16 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:53:16 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53:16 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:53:16 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:16 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5570 elements 14:53:16 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5570 elements 14:53:16 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:53:16 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:16 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:16 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:16 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:53:16 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53:16 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:53:16 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:16 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5570 elements 14:53:16 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5570 elements 14:53:16 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:53:16 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:53:16 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:16 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:16 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:16 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:53:16 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53:16 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:53:16 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:16 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5570 elements 14:53:16 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5570 elements 14:53:16 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:53:16 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-25 21:00:00 (before) 2024-04-26 00:00:00 (after) 14:53:16 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity 14:53:21 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_sea_water_velocity to retrieve y_sea_water_velocity 14:53:26 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:53:26 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values 14:53:26 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values 14:53:26 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity'] 14:53:26 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 21x22x18) for time after (2024-04-26 00:00:00) 14:53:26 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-25 21:00:00) in space (linearNDFast) 14:53:26 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:26 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-26 00:00:00) in space (linearNDFast) 14:53:26 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1 14:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1 14:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1 14:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1 14:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1 14:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1 14:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1 14:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1 14:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1 14:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1 14:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1 14:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1 14:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1 14:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1 14:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1 14:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1 14:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1 14:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1 14:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1 14:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1 14:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1 14:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1 14:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1 14:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1 14:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1 14:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1 14:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1 14:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1 14:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1 14:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1 14:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1 14:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1 14:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1 14:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1 14:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1 14:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1 14:53:26 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-25 21:00:00, weight 0.76) and after (2024-04-26 00:00:00, weight 0.24) in time 14:53:26 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:26 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:26 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:26 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:53:26 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53: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 14:53:26 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:26 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5570 elements 14:53: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 5570 elements 14:53:26 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:53:26 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-25 21:00:00 (before) 2024-04-26 00:00:00 (after) 14:53:26 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_wind to retrieve x_wind 14:53:27 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_wind to retrieve y_wind 14:53:27 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:53:27 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values 14:53:27 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values 14:53:27 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 8x7x1) for time after (2024-04-26 00:00:00) 14:53:27 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-25 21:00:00) in space (linearNDFast) 14:53:27 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:27 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-26 00:00:00) in space (linearNDFast) 14:53:27 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:27 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-25 21:00:00, weight 0.76) and after (2024-04-26 00:00:00, weight 0.24) in time 14:53:27 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:27 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:27 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:53:27 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:53: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'] 14:53:27 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:53:27 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:53:27 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:53:27 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:53:27 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.227229 (min) 0.0960993 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.147303 (min) 0.15499 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:905: x_wind: 7.76373 (min) 9.1221 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:905: y_wind: -4.44617 (min) -2.20994 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:53:27 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.776067, mean: 1.900764, max: 2.498842 14:53:27 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:53:27 DEBUG opendrift.models.physics_methods:1058: min: 7.260378, mean: 7.509870, max: 8.611901 14:53:27 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 7.260378, mean: 7.509870, max: 8.611901 14:53:27 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:53:27 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:53:27 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:53:27 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:53:27 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:53:27 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:53:27 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:53:27 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:53:27 DEBUG opendrift.models.physics_methods:1058: min: 7.260378, mean: 7.509870, max: 8.611900 14:53:27 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:53:27 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.031583, dN_50: 0.002479 14:53:27 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:53:27 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.03665541605472588 14:53:27 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:53:27 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:53:27 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:53:27 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 270 surface elements 14:53:27 DEBUG opendrift.models.physics_methods:912: Advecting 281 of 5570 elements above 0.100m with wind-sheared ocean current (0.002647 m/s - 0.302359 m/s) 14:53:27 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:53:27 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.003772368062489349 and 0.4548387227413332 m/s 14:53:27 DEBUG opendrift.models.basemodel:2097: 5570 active elements (430 deactivated) 14:53:27 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:53:27 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:53:27 INFO opendrift.models.basemodel:2011: 2024-04-25 22:42:41.057477 - step 105 of 120 - 5570 active elements (430 deactivated) 14:53:27 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:53:27 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:53:27 DEBUG opendrift.models.basemodel:2030: 34.83364824363848 <- latitude -> 35.38515090750234 14:53:27 DEBUG opendrift.models.basemodel:2035: 22.821272361408983 <- longitude -> 23.866844967478063 14:53:27 DEBUG opendrift.models.basemodel:2040: -59.63973085692659 <- z -> 0.0 14:53:27 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:53:27 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:27 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:53:27 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53:27 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:53:27 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:27 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5570 elements 14:53:27 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5570 elements 14:53:27 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:53:27 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:27 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:27 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:27 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:53:27 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53:27 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:53:27 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:27 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5570 elements 14:53:27 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5570 elements 14:53:27 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:53:27 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:53:27 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:27 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:27 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:27 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:53:27 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53:27 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:53:27 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:27 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5570 elements 14:53:27 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5570 elements 14:53:27 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:53:27 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-25 21:00:00 (before) 2024-04-26 00:00:00 (after) 14:53:27 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-25 21:00:00) in space (linearNDFast) 14:53:27 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:27 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-26 00:00:00) in space (linearNDFast) 14:53:27 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:27 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-25 21:00:00, weight 0.43) and after (2024-04-26 00:00:00, weight 0.57) in time 14:53:27 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:27 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:27 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:27 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:53:27 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53: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 14:53:27 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:27 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5570 elements 14:53: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 5570 elements 14:53:27 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:53:27 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-25 21:00:00 (before) 2024-04-26 00:00:00 (after) 14:53:27 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-25 21:00:00) in space (linearNDFast) 14:53:27 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:27 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-26 00:00:00) in space (linearNDFast) 14:53:27 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:27 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-25 21:00:00, weight 0.43) and after (2024-04-26 00:00:00, weight 0.57) in time 14:53:27 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:27 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:27 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:53:27 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:53: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'] 14:53:27 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:53:27 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:53:27 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:53:27 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:53:27 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.221706 (min) 0.113622 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.195332 (min) 0.169934 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:905: x_wind: 7.5486 (min) 9.05954 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:905: y_wind: -4.57949 (min) -2.46749 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:53:27 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.700626, mean: 1.844854, max: 2.466692 14:53:27 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:53:27 DEBUG opendrift.models.physics_methods:1058: min: 7.104509, mean: 7.398539, max: 8.556321 14:53:27 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 7.104509, mean: 7.398539, max: 8.556321 14:53:27 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:53:27 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:53:27 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:53:27 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:53:27 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:53:27 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:53:27 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:53:27 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:53:27 DEBUG opendrift.models.physics_methods:1058: min: 7.104509, mean: 7.398539, max: 8.556321 14:53:27 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:53:27 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.032240, dN_50: 0.002530 14:53:27 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:53:27 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.036183865076429615 14:53:27 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:53:27 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:53:27 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:53:27 DEBUG opendrift.models.physics_methods:912: Advecting 283 of 5570 elements above 0.100m with wind-sheared ocean current (0.062524 m/s - 0.300408 m/s) 14:53:27 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:53:27 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0011302730401718316 and 0.4492919521126399 m/s 14:53:27 DEBUG opendrift.models.basemodel:2097: 5570 active elements (430 deactivated) 14:53:27 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:53:27 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:53:27 INFO opendrift.models.basemodel:2011: 2024-04-25 23:42:41.057477 - step 106 of 120 - 5570 active elements (430 deactivated) 14:53:27 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:53:27 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:53:27 DEBUG opendrift.models.basemodel:2030: 34.83185791637311 <- latitude -> 35.38487206360236 14:53:27 DEBUG opendrift.models.basemodel:2035: 22.82607310649723 <- longitude -> 23.874452829555317 14:53:27 DEBUG opendrift.models.basemodel:2040: -59.10915208604407 <- z -> 0.0 14:53:27 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:53:27 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:27 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:53:27 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53:27 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:53:27 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:27 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5570 elements 14:53:27 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5570 elements 14:53:27 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:53:27 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:27 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:27 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:27 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:53:27 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53:27 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:53:27 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:27 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5570 elements 14:53:27 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5570 elements 14:53:27 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:53:27 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:53:27 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:27 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:27 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:27 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:53:27 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53:27 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:53:27 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:27 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5570 elements 14:53:27 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5570 elements 14:53:27 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:53:27 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-25 21:00:00 (before) 2024-04-26 00:00:00 (after) 14:53:27 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-25 21:00:00) in space (linearNDFast) 14:53:27 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:27 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-26 00:00:00) in space (linearNDFast) 14:53:27 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:27 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-25 21:00:00, weight 0.10) and after (2024-04-26 00:00:00, weight 0.90) in time 14:53:27 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:27 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:27 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:27 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:53:27 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53: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 14:53:27 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:27 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5570 elements 14:53: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 5570 elements 14:53:27 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:53:27 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-25 21:00:00 (before) 2024-04-26 00:00:00 (after) 14:53:27 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-25 21:00:00) in space (linearNDFast) 14:53:27 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:27 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-26 00:00:00) in space (linearNDFast) 14:53:27 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:27 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-25 21:00:00, weight 0.10) and after (2024-04-26 00:00:00, weight 0.90) in time 14:53:27 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:27 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:27 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:53:27 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:53: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'] 14:53:27 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:53:27 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:53:27 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:53:27 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:53:27 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.217654 (min) 0.138281 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.203807 (min) 0.181114 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:905: x_wind: 7.3006 (min) 8.99732 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:905: y_wind: -4.71976 (min) -2.67126 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:53:27 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:53:27 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.594358, mean: 1.793594, max: 2.454438 14:53:27 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:53:27 DEBUG opendrift.models.physics_methods:1058: min: 6.878955, mean: 7.294895, max: 8.535042 14:53:27 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 6.878955, mean: 7.294895, max: 8.535042 14:53:27 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:53:27 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:53:27 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:53:27 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:53:27 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:53:27 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:53:27 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:53:27 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:53:27 DEBUG opendrift.models.physics_methods:1058: min: 6.878955, mean: 7.294895, max: 8.535042 14:53:27 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:53:27 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.032881, dN_50: 0.002580 14:53:27 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:53:27 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.03600412570876964 14:53:27 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:53:27 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:53:27 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:53:27 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 282 surface elements 14:53:27 DEBUG opendrift.models.physics_methods:912: Advecting 295 of 5570 elements above 0.100m with wind-sheared ocean current (0.053671 m/s - 0.298516 m/s) 14:53:27 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:53:27 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0026163469654916583 and 0.42103785324392745 m/s 14:53:27 DEBUG opendrift.models.basemodel:2097: 5570 active elements (430 deactivated) 14:53:27 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:53:27 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:53:27 INFO opendrift.models.basemodel:2011: 2024-04-26 00:42:41.057477 - step 107 of 120 - 5570 active elements (430 deactivated) 14:53:27 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:53:27 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:53:27 DEBUG opendrift.models.basemodel:2030: 34.82646954746873 <- latitude -> 35.391853389279035 14:53:27 DEBUG opendrift.models.basemodel:2035: 22.82084521692125 <- longitude -> 23.883987502325514 14:53:27 DEBUG opendrift.models.basemodel:2040: -58.167634257943156 <- z -> 0.0 14:53:27 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:53:27 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:27 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:53:27 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53:27 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:53:27 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:27 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5570 elements 14:53:27 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5570 elements 14:53:27 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:53:27 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:27 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:27 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:27 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:53:27 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53:27 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:53:27 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:27 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5570 elements 14:53:27 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5570 elements 14:53:27 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:53:27 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:53:27 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:27 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:27 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:27 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:53:27 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53:27 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:53:27 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:27 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5570 elements 14:53:27 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5570 elements 14:53:27 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:53:27 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-26 00:00:00 (before) 2024-04-26 03:00:00 (after) 14:53:27 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity 14:53:31 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_sea_water_velocity to retrieve y_sea_water_velocity 14:53:36 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:53:36 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values 14:53:36 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values 14:53:36 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity'] 14:53:36 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 21x22x17) for time after (2024-04-26 03:00:00) 14:53:36 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-26 00:00:00) in space (linearNDFast) 14:53:36 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:36 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-26 03:00:00) in space (linearNDFast) 14:53:36 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 1 14:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 1 14:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 1 14:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 1 14:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 1 14:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 1 14:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 1 14:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 1 14:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 1 14:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 1 14:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 1 14:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 1 14:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 1 14:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 1 14:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 1 14:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 1 14:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 1 14:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 1 14:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 1 14:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 1 14:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 1 14:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 1 14:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 1 14:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 1 14:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 1 14:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 1 14:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 1 14:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 1 14:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 1 14:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 1 14:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 1 14:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 1 14:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 1 14:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 1 14:53:36 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-26 00:00:00, weight 0.76) and after (2024-04-26 03:00:00, weight 0.24) in time 14:53:36 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:36 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:36 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:36 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:53:36 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53: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 14:53:36 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:36 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5570 elements 14:53: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 5570 elements 14:53:36 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:53:36 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-26 00:00:00 (before) 2024-04-26 03:00:00 (after) 14:53:36 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_wind to retrieve x_wind 14:53:36 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_wind to retrieve y_wind 14:53:36 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:53:36 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values 14:53:36 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values 14:53:36 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 8x7x1) for time after (2024-04-26 03:00:00) 14:53:36 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-26 00:00:00) in space (linearNDFast) 14:53:36 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:36 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-26 03:00:00) in space (linearNDFast) 14:53:36 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:36 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-26 00:00:00, weight 0.76) and after (2024-04-26 03:00:00, weight 0.24) in time 14:53:36 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:36 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:36 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:53:36 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:53:36 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'] 14:53:36 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:53:36 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:53:36 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:53:36 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:53:36 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.205281 (min) 0.130971 (max) 14:53:36 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.213809 (min) 0.1839 (max) 14:53:36 DEBUG opendrift.models.basemodel.environment:905: x_wind: 7.02243 (min) 8.82479 (max) 14:53:36 DEBUG opendrift.models.basemodel.environment:905: y_wind: -4.8429 (min) -2.86829 (max) 14:53:36 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:53:36 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:53:36 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:53:36 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:53:36 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:53:36 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:53:36 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:53:36 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:53:36 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:53:36 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:53:36 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:53:36 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:53:36 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:53:36 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:53:36 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:53:36 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:53:36 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:53:36 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.513042, mean: 1.723239, max: 2.392087 14:53:36 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:53:36 DEBUG opendrift.models.physics_methods:1058: min: 6.701238, mean: 7.150170, max: 8.425934 14:53:36 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 6.701238, mean: 7.150170, max: 8.425934 14:53:36 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:53:36 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:53:36 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:53:36 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:53:36 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:53:36 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:53:36 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:53:36 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:53:36 DEBUG opendrift.models.physics_methods:1058: min: 6.701238, mean: 7.150170, max: 8.425934 14:53:36 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:53:36 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.033599, dN_50: 0.002637 14:53:37 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:53:37 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.035089602385672956 14:53:37 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:53:37 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:53:37 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:53:37 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 283 surface elements 14:53:37 DEBUG opendrift.models.physics_methods:912: Advecting 295 of 5570 elements above 0.100m with wind-sheared ocean current (0.055624 m/s - 0.295830 m/s) 14:53:37 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:53:37 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.001984058323652932 and 0.42867818974648336 m/s 14:53:37 DEBUG opendrift.models.basemodel:2097: 5570 active elements (430 deactivated) 14:53:37 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:53:37 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:53:37 INFO opendrift.models.basemodel:2011: 2024-04-26 01:42:41.057477 - step 108 of 120 - 5570 active elements (430 deactivated) 14:53:37 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:53:37 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:53:37 DEBUG opendrift.models.basemodel:2030: 34.82165540034793 <- latitude -> 35.40023056802759 14:53:37 DEBUG opendrift.models.basemodel:2035: 22.82231027765481 <- longitude -> 23.8839810079063 14:53:37 DEBUG opendrift.models.basemodel:2040: -57.17260684603799 <- z -> 0.0 14:53:37 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:53:37 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:37 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:53:37 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53:37 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:53:37 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:37 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5570 elements 14:53:37 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5570 elements 14:53:37 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:53:37 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:37 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:37 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:37 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:53:37 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53:37 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:53:37 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:37 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5570 elements 14:53:37 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5570 elements 14:53:37 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:53:37 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:53:37 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:37 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:37 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:37 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:53:37 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53:37 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:53:37 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:37 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5570 elements 14:53:37 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5570 elements 14:53:37 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:53:37 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-26 00:00:00 (before) 2024-04-26 03:00:00 (after) 14:53:37 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-26 00:00:00) in space (linearNDFast) 14:53:37 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:37 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-26 03:00:00) in space (linearNDFast) 14:53:37 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:37 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-26 00:00:00, weight 0.43) and after (2024-04-26 03:00:00, weight 0.57) in time 14:53:37 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:37 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:37 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:37 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:53:37 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53: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 14:53:37 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:37 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5570 elements 14:53: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 5570 elements 14:53:37 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:53:37 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-26 00:00:00 (before) 2024-04-26 03:00:00 (after) 14:53:37 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-26 00:00:00) in space (linearNDFast) 14:53:37 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:37 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-26 03:00:00) in space (linearNDFast) 14:53:37 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:37 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-26 00:00:00, weight 0.43) and after (2024-04-26 03:00:00, weight 0.57) in time 14:53:37 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:37 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:37 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:53:37 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:53: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'] 14:53:37 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:53:37 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:53:37 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:53:37 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:53:37 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.208544 (min) 0.0989617 (max) 14:53:37 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.246559 (min) 0.194413 (max) 14:53:37 DEBUG opendrift.models.basemodel.environment:905: x_wind: 6.7305 (min) 8.56202 (max) 14:53:37 DEBUG opendrift.models.basemodel.environment:905: y_wind: -4.95153 (min) -2.95154 (max) 14:53:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:53:37 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:53:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:53:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:53:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:53:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:53:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:53:37 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:53:37 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:53:37 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:53:37 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:53:37 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:53:37 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:53:37 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:53:37 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:53:37 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:53:37 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:53:37 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.427384, mean: 1.647632, max: 2.329060 14:53:37 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:53:37 DEBUG opendrift.models.physics_methods:1058: min: 6.508786, mean: 6.991294, max: 8.314190 14:53:37 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 6.508786, mean: 6.991294, max: 8.314190 14:53:37 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:53:37 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:53:37 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:53:37 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:53:37 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:53:37 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:53:37 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:53:37 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:53:37 DEBUG opendrift.models.physics_methods:1058: min: 6.508786, mean: 6.991294, max: 8.314190 14:53:37 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:53:37 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.034352, dN_50: 0.002696 14:53:37 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:53:37 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.034165172085013566 14:53:37 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:53:37 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:53:37 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:53:37 DEBUG opendrift.models.physics_methods:912: Advecting 305 of 5570 elements above 0.100m with wind-sheared ocean current (0.005333 m/s - 0.291907 m/s) 14:53:37 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:53:37 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0005016455598705226 and 0.4264612354806412 m/s 14:53:37 DEBUG opendrift.models.basemodel:2097: 5570 active elements (430 deactivated) 14:53:37 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:53:37 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:53:37 INFO opendrift.models.basemodel:2011: 2024-04-26 02:42:41.057477 - step 109 of 120 - 5570 active elements (430 deactivated) 14:53:37 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:53:37 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:53:37 DEBUG opendrift.models.basemodel:2030: 34.8133813387711 <- latitude -> 35.403835727871076 14:53:37 DEBUG opendrift.models.basemodel:2035: 22.8220277711379 <- longitude -> 23.89457087785308 14:53:37 DEBUG opendrift.models.basemodel:2040: -56.05863738226416 <- z -> 0.0 14:53:37 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:53:37 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:37 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:53:37 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53:37 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:53:37 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:37 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5570 elements 14:53:37 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5570 elements 14:53:37 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:53:37 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:37 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:37 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:37 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:53:37 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53:37 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:53:37 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:37 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5570 elements 14:53:37 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5570 elements 14:53:37 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:53:37 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:53:37 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:37 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:37 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:37 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:53:37 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53:37 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:53:37 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:37 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5570 elements 14:53:37 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5570 elements 14:53:37 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:53:37 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-26 00:00:00 (before) 2024-04-26 03:00:00 (after) 14:53:37 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-26 00:00:00) in space (linearNDFast) 14:53:37 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:37 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-26 03:00:00) in space (linearNDFast) 14:53:37 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:37 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-26 00:00:00, weight 0.10) and after (2024-04-26 03:00:00, weight 0.90) in time 14:53:37 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:37 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:37 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:37 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:53:37 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53: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 14:53:37 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:37 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5570 elements 14:53: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 5570 elements 14:53:37 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:53:37 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-26 00:00:00 (before) 2024-04-26 03:00:00 (after) 14:53:37 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-26 00:00:00) in space (linearNDFast) 14:53:37 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:37 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-26 03:00:00) in space (linearNDFast) 14:53:37 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:37 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-26 00:00:00, weight 0.10) and after (2024-04-26 03:00:00, weight 0.90) in time 14:53:37 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:37 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:37 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:53:37 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:53: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'] 14:53:37 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:53:37 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:53:37 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:53:37 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:53:37 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.218475 (min) 0.0786645 (max) 14:53:37 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.269163 (min) 0.193235 (max) 14:53:37 DEBUG opendrift.models.basemodel.environment:905: x_wind: 6.45022 (min) 8.34066 (max) 14:53:37 DEBUG opendrift.models.basemodel.environment:905: y_wind: -5.04644 (min) -2.90258 (max) 14:53:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:53:37 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:53:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:53:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:53:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:53:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:53:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:53:37 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:53:37 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:53:37 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:53:37 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:53:37 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:53:37 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:53:37 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:53:37 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:53:37 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:53:37 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:53:37 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.348725, mean: 1.576367, max: 2.240061 14:53:37 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:53:37 DEBUG opendrift.models.physics_methods:1058: min: 6.326906, mean: 6.838145, max: 8.153790 14:53:37 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 6.326906, mean: 6.838145, max: 8.153790 14:53:37 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:53:37 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:53:37 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:53:37 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:53:37 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:53:37 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:53:37 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:53:37 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:53:37 DEBUG opendrift.models.physics_methods:1058: min: 6.326906, mean: 6.838144, max: 8.153790 14:53:37 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:53:37 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.035103, dN_50: 0.002755 14:53:37 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:53:37 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.032859795580571824 14:53:37 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:53:37 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:53:37 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:53:37 DEBUG opendrift.models.physics_methods:912: Advecting 310 of 5570 elements above 0.100m with wind-sheared ocean current (0.019202 m/s - 0.286275 m/s) 14:53:37 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:53:37 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0007201425310738286 and 0.4879916136411185 m/s 14:53:37 DEBUG opendrift.models.basemodel:2097: 5570 active elements (430 deactivated) 14:53:37 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:53:37 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:53:37 INFO opendrift.models.basemodel:2011: 2024-04-26 03:42:41.057477 - step 110 of 120 - 5570 active elements (430 deactivated) 14:53:37 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:53:37 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:53:37 DEBUG opendrift.models.basemodel:2030: 34.803688180131246 <- latitude -> 35.41088733296717 14:53:37 DEBUG opendrift.models.basemodel:2035: 22.82087616825705 <- longitude -> 23.896706450504453 14:53:37 DEBUG opendrift.models.basemodel:2040: -55.28557243499259 <- z -> 0.0 14:53:37 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:53:37 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:37 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:53:37 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53:37 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:53:37 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:37 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5570 elements 14:53:37 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5570 elements 14:53:37 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:53:37 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:37 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:37 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:37 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:53:37 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53:37 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:53:37 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:37 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5570 elements 14:53:37 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5570 elements 14:53:37 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:53:37 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:53:37 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:37 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:37 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:37 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:53:37 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53:37 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:53:37 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:37 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5570 elements 14:53:37 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5570 elements 14:53:37 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:53:37 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-26 03:00:00 (before) 2024-04-26 06:00:00 (after) 14:53:37 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity 14:53:42 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_sea_water_velocity to retrieve y_sea_water_velocity 14:53:45 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:53:45 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values 14:53:45 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values 14:53:45 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity'] 14:53:45 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 21x23x17) for time after (2024-04-26 06:00:00) 14:53:45 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-26 03:00:00) in space (linearNDFast) 14:53:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:45 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-26 06:00:00) in space (linearNDFast) 14:53:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 1 14:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 1 14:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 1 14:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 1 14:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 1 14:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 1 14:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 1 14:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 1 14:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 1 14:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 1 14:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 1 14:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 1 14:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 1 14:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 1 14:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 1 14:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 1 14:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 1 14:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 1 14:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 1 14:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 1 14:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 1 14:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 1 14:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 1 14:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 1 14:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 1 14:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 1 14:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 1 14:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 1 14:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 1 14:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 1 14:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 1 14:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 1 14:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 1 14:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 1 14:53:45 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-26 03:00:00, weight 0.76) and after (2024-04-26 06:00:00, weight 0.24) in time 14:53:45 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:45 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:45 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:45 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:53:45 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53: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 14:53:45 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:45 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5570 elements 14:53: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 5570 elements 14:53:45 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:53:45 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-26 03:00:00 (before) 2024-04-26 06:00:00 (after) 14:53:45 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_wind to retrieve x_wind 14:53:45 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_wind to retrieve y_wind 14:53:45 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:53:45 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values 14:53:45 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values 14:53:45 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 8x7x1) for time after (2024-04-26 06:00:00) 14:53:45 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-26 03:00:00) in space (linearNDFast) 14:53:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:45 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-26 06:00:00) in space (linearNDFast) 14:53:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:45 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-26 03:00:00, weight 0.76) and after (2024-04-26 06:00:00, weight 0.24) in time 14:53:45 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:45 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:45 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:53:45 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:53: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'] 14:53:45 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:53:45 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:53:45 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:53:45 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:53:45 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.25052 (min) 0.0702854 (max) 14:53:45 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.278689 (min) 0.198245 (max) 14:53:45 DEBUG opendrift.models.basemodel.environment:905: x_wind: 6.18149 (min) 8.39787 (max) 14:53:45 DEBUG opendrift.models.basemodel.environment:905: y_wind: -4.92072 (min) -2.92786 (max) 14:53:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:53:45 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:53:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:53:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:53:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:53:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:53:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:53:45 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:53:45 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:53:45 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:53:45 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:53:45 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:53:45 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:53:45 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:53:45 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max) 14:53:45 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:53:45 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:53:45 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.263772, mean: 1.446142, max: 2.159383 14:53:45 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:53:45 DEBUG opendrift.models.physics_methods:1058: min: 6.124406, mean: 6.549000, max: 8.005610 14:53:45 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 6.124406, mean: 6.549000, max: 8.005610 14:53:45 DEBUG opendrift.models.basemodel:1667: 1 elements scheduled for deactivation (stranded) 14:53:45 DEBUG opendrift.models.basemodel:1669: (z: -0.003857 to -0.003857) 14:53:45 DEBUG opendrift.models.basemodel:1687: Removed 1 elements. 14:53:45 DEBUG opendrift.models.basemodel:1690: Removed 1 values from environment. 14:53:45 DEBUG opendrift.models.basemodel:1695: remove items from profile for z 14:53:45 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_temperature 14:53:45 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_salinity 14:53:45 DEBUG opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity 14:53:45 DEBUG opendrift.models.basemodel:1699: Removed 1 values from environment_profiles. 14:53:45 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:53:45 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:53:45 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:53:45 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:53:45 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:53:45 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:53:45 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:53:45 DEBUG opendrift.models.physics_methods:1058: min: 6.124406, mean: 6.549073, max: 8.005610 14:53:45 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:53:45 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.036235, dN_50: 0.002844 14:53:45 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:53:45 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.03167646528335013 14:53:45 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:53:45 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:53:45 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:53:45 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 300 surface elements 14:53:45 DEBUG opendrift.models.physics_methods:912: Advecting 310 of 5569 elements above 0.100m with wind-sheared ocean current (0.007088 m/s - 0.281073 m/s) 14:53:45 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:53:45 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0021039082781436355 and 0.4550449225152366 m/s 14:53:45 DEBUG opendrift.models.basemodel:2097: 5569 active elements (431 deactivated) 14:53:45 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:53:45 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:53:45 INFO opendrift.models.basemodel:2011: 2024-04-26 04:42:41.057477 - step 111 of 120 - 5569 active elements (431 deactivated) 14:53:45 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:53:45 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:53:45 DEBUG opendrift.models.basemodel:2030: 34.79817197069755 <- latitude -> 35.419779321946315 14:53:45 DEBUG opendrift.models.basemodel:2035: 22.819734166342727 <- longitude -> 23.89962902400958 14:53:45 DEBUG opendrift.models.basemodel:2040: -54.31796524790296 <- z -> 0.0 14:53:45 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:53:45 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:45 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:53:45 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53:45 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:53:45 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:45 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5569 elements 14:53:45 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5569 elements 14:53:45 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:53:45 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:45 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:45 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:45 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:53:45 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53:45 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:53:45 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:45 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5569 elements 14:53:45 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5569 elements 14:53:45 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:53:45 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:53:45 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:45 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:45 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:45 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:53:45 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53:45 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:53:45 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:45 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5569 elements 14:53:45 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5569 elements 14:53:45 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:53:45 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-26 03:00:00 (before) 2024-04-26 06:00:00 (after) 14:53:45 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-26 03:00:00) in space (linearNDFast) 14:53:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:45 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-26 06:00:00) in space (linearNDFast) 14:53:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:45 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-26 03:00:00, weight 0.43) and after (2024-04-26 06:00:00, weight 0.57) in time 14:53:45 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:45 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:45 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:45 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:53:45 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53: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 14:53:45 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:45 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5569 elements 14:53: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 5569 elements 14:53:45 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:53:45 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-26 03:00:00 (before) 2024-04-26 06:00:00 (after) 14:53:45 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-26 03:00:00) in space (linearNDFast) 14:53:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:45 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-26 06:00:00) in space (linearNDFast) 14:53:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:45 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-26 03:00:00, weight 0.43) and after (2024-04-26 06:00:00, weight 0.57) in time 14:53:45 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:45 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:45 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:53:45 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:53: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'] 14:53:45 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:53:45 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:53:45 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:53:45 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:53:45 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.273552 (min) 0.075097 (max) 14:53:45 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.28524 (min) 0.204578 (max) 14:53:45 DEBUG opendrift.models.basemodel.environment:905: x_wind: 5.93864 (min) 8.47154 (max) 14:53:45 DEBUG opendrift.models.basemodel.environment:905: y_wind: -4.68729 (min) -2.9032 (max) 14:53:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:53:45 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:53:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:53:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:53:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:53:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:53:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:53:45 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:53:45 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:53:45 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:53:45 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:53:45 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:53:45 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:53:45 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:53:45 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:53:45 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:53:45 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:53:45 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.174425, mean: 1.298157, max: 2.111305 14:53:45 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:53:45 DEBUG opendrift.models.physics_methods:1058: min: 5.903944, mean: 6.203515, max: 7.915988 14:53:45 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 5.903944, mean: 6.203515, max: 7.915988 14:53:45 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:53:45 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:53:45 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:53:45 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:53:45 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:53:45 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:53:45 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:53:45 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:53:45 DEBUG opendrift.models.physics_methods:1058: min: 5.903944, mean: 6.203515, max: 7.915987 14:53:45 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:53:45 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.037618, dN_50: 0.002952 14:53:46 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:53:46 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.03097130001777261 14:53:46 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:53:46 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:53:46 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:53:46 DEBUG opendrift.models.physics_methods:912: Advecting 322 of 5569 elements above 0.100m with wind-sheared ocean current (0.007429 m/s - 0.277926 m/s) 14:53:46 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:53:46 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0006385463476290589 and 0.4372268227030072 m/s 14:53:46 DEBUG opendrift.models.basemodel:2097: 5569 active elements (431 deactivated) 14:53:46 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:53:46 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:53:46 INFO opendrift.models.basemodel:2011: 2024-04-26 05:42:41.057477 - step 112 of 120 - 5569 active elements (431 deactivated) 14:53:46 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:53:46 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:53:46 DEBUG opendrift.models.basemodel:2030: 34.78383168769089 <- latitude -> 35.42295759585416 14:53:46 DEBUG opendrift.models.basemodel:2035: 22.824477852924765 <- longitude -> 23.9108997573111 14:53:46 DEBUG opendrift.models.basemodel:2040: -53.41856876677374 <- z -> 0.0 14:53:46 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:53:46 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:46 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:53:46 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53:46 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:53:46 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:46 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5569 elements 14:53:46 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5569 elements 14:53:46 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:53:46 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:46 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:46 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:46 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:53:46 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53:46 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:53:46 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:46 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5569 elements 14:53:46 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5569 elements 14:53:46 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:53:46 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:53:46 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:46 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:46 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:46 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:53:46 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53:46 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:53:46 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:46 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5569 elements 14:53:46 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5569 elements 14:53:46 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:53:46 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-26 03:00:00 (before) 2024-04-26 06:00:00 (after) 14:53:46 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-26 03:00:00) in space (linearNDFast) 14:53:46 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:46 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-26 06:00:00) in space (linearNDFast) 14:53:46 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:46 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-26 03:00:00, weight 0.10) and after (2024-04-26 06:00:00, weight 0.90) in time 14:53:46 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:46 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:46 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:46 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:53:46 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53: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 14:53:46 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:46 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5569 elements 14:53: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 5569 elements 14:53:46 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:53:46 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-26 03:00:00 (before) 2024-04-26 06:00:00 (after) 14:53:46 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-26 03:00:00) in space (linearNDFast) 14:53:46 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:46 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-26 06:00:00) in space (linearNDFast) 14:53:46 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:46 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-26 03:00:00, weight 0.10) and after (2024-04-26 06:00:00, weight 0.90) in time 14:53:46 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:46 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:46 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:53:46 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:53: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'] 14:53:46 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:53:46 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:53:46 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:53:46 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:53:46 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.288904 (min) 0.0962099 (max) 14:53:46 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.30022 (min) 0.206823 (max) 14:53:46 DEBUG opendrift.models.basemodel.environment:905: x_wind: 5.66937 (min) 8.58926 (max) 14:53:46 DEBUG opendrift.models.basemodel.environment:905: y_wind: -4.45894 (min) -2.78522 (max) 14:53:46 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:53:46 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:53:46 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:53:46 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:53:46 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:53:46 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:53:46 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:53:46 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:53:46 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:53:46 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:53:46 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:53:46 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:53:46 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:53:46 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:53:46 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:53:46 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:53:46 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:53:46 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.028638, mean: 1.158628, max: 2.091854 14:53:46 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:53:46 DEBUG opendrift.models.physics_methods:1058: min: 5.525362, mean: 5.858470, max: 7.879438 14:53:46 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 5.525362, mean: 5.858470, max: 7.879438 14:53:46 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:53:46 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:53:46 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:53:46 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:53:46 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:53:46 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:53:46 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:53:46 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:53:46 DEBUG opendrift.models.physics_methods:1058: min: 5.525362, mean: 5.858469, max: 7.879438 14:53:46 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:53:46 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.039112, dN_50: 0.003070 14:53:46 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:53:46 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.03068599669204051 14:53:46 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:53:46 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:53:46 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:53:46 DEBUG opendrift.models.physics_methods:912: Advecting 326 of 5569 elements above 0.100m with wind-sheared ocean current (0.054072 m/s - 0.276643 m/s) 14:53:46 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:53:46 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0003892329059093122 and 0.5055408535939415 m/s 14:53:46 DEBUG opendrift.models.basemodel:2097: 5569 active elements (431 deactivated) 14:53:46 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:53:46 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:53:46 INFO opendrift.models.basemodel:2011: 2024-04-26 06:42:41.057477 - step 113 of 120 - 5569 active elements (431 deactivated) 14:53:46 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:53:46 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:53:46 DEBUG opendrift.models.basemodel:2030: 34.78107046270575 <- latitude -> 35.42540452332871 14:53:46 DEBUG opendrift.models.basemodel:2035: 22.82022027711457 <- longitude -> 23.908951481847915 14:53:46 DEBUG opendrift.models.basemodel:2040: -52.21245404353512 <- z -> 0.0 14:53:46 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:53:46 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:46 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:53:46 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53:46 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:53:46 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:46 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5569 elements 14:53:46 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5569 elements 14:53:46 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:53:46 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:46 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:46 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:46 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:53:46 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53:46 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:53:46 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:46 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5569 elements 14:53:46 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5569 elements 14:53:46 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:53:46 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:53:46 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:46 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:46 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:46 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:53:46 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53:46 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:53:46 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:46 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5569 elements 14:53:46 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5569 elements 14:53:46 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:53:46 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-26 06:00:00 (before) 2024-04-26 09:00:00 (after) 14:53:46 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity 14:53:50 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_sea_water_velocity to retrieve y_sea_water_velocity 14:53:57 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:53:57 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values 14:53:57 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values 14:53:57 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity'] 14:53:57 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 22x24x17) for time after (2024-04-26 09:00:00) 14:53:57 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-26 06:00:00) in space (linearNDFast) 14:53:57 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:57 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-26 09:00:00) in space (linearNDFast) 14:53:57 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1 14:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1 14:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1 14:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1 14:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1 14:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1 14:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1 14:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1 14:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1 14:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1 14:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1 14:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1 14:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1 14:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1 14:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1 14:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1 14:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1 14:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1 14:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1 14:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1 14:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1 14:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1 14:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1 14:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1 14:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1 14:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1 14:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1 14:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1 14:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1 14:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1 14:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1 14:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1 14:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1 14:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1 14:53:57 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-26 06:00:00, weight 0.76) and after (2024-04-26 09:00:00, weight 0.24) in time 14:53:57 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:57 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:57 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:57 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:53:57 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53:57 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd 14:53:57 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:57 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5569 elements 14:53:57 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 5569 elements 14:53:57 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:53:57 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-26 06:00:00 (before) 2024-04-26 09:00:00 (after) 14:53:57 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_wind to retrieve x_wind 14:53:58 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_wind to retrieve y_wind 14:53:58 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:53:58 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values 14:53:58 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values 14:53:58 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 8x7x1) for time after (2024-04-26 09:00:00) 14:53:58 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-26 06:00:00) in space (linearNDFast) 14:53:58 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:58 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-26 09:00:00) in space (linearNDFast) 14:53:58 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:58 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-26 06:00:00, weight 0.76) and after (2024-04-26 09:00:00, weight 0.24) in time 14:53:58 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:58 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:58 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:53:58 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:53: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'] 14:53:58 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:53:58 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:53:58 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:53:58 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:53:58 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.293126 (min) 0.100328 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.300578 (min) 0.199427 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:905: x_wind: 5.462 (min) 8.68224 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:905: y_wind: -4.38123 (min) -2.66602 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:53:58 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.941397, mean: 1.069974, max: 2.094559 14:53:58 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:53:58 DEBUG opendrift.models.physics_methods:1058: min: 5.285864, mean: 5.628517, max: 7.884531 14:53:58 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 5.285864, mean: 5.628517, max: 7.884531 14:53:58 DEBUG opendrift.models.basemodel:1667: 1 elements scheduled for deactivation (stranded) 14:53:58 DEBUG opendrift.models.basemodel:1669: (z: -11.214310 to -11.214310) 14:53:58 DEBUG opendrift.models.basemodel:1687: Removed 1 elements. 14:53:58 DEBUG opendrift.models.basemodel:1690: Removed 1 values from environment. 14:53:58 DEBUG opendrift.models.basemodel:1695: remove items from profile for z 14:53:58 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_temperature 14:53:58 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_salinity 14:53:58 DEBUG opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity 14:53:58 DEBUG opendrift.models.basemodel:1699: Removed 1 values from environment_profiles. 14:53:58 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:53:58 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:53:58 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:53:58 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:53:58 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:53:58 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:53:58 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:53:58 DEBUG opendrift.models.physics_methods:1058: min: 5.285864, mean: 5.628525, max: 7.884531 14:53:58 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:53:58 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.040314, dN_50: 0.003164 14:53:58 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:53:58 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.030725677486513215 14:53:58 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:53:58 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:53:58 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:53:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 330 surface elements 14:53:58 DEBUG opendrift.models.physics_methods:912: Advecting 334 of 5568 elements above 0.100m with wind-sheared ocean current (0.099548 m/s - 0.276822 m/s) 14:53:58 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:53:58 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0011046627563114483 and 0.4692507404610002 m/s 14:53:58 DEBUG opendrift.models.basemodel:2097: 5568 active elements (432 deactivated) 14:53:58 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:53:58 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:53:58 INFO opendrift.models.basemodel:2011: 2024-04-26 07:42:41.057477 - step 114 of 120 - 5568 active elements (432 deactivated) 14:53:58 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:53:58 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:53:58 DEBUG opendrift.models.basemodel:2030: 34.77469368289526 <- latitude -> 35.431540067654524 14:53:58 DEBUG opendrift.models.basemodel:2035: 22.81022277744744 <- longitude -> 23.91552050137747 14:53:58 DEBUG opendrift.models.basemodel:2040: -51.57753237423836 <- z -> 0.0 14:53:58 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:53:58 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:58 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:53:58 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53:58 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:53:58 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:58 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5568 elements 14:53:58 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5568 elements 14:53:58 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:53:58 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:58 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:58 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:58 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:53:58 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53:58 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:53:58 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:58 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5568 elements 14:53:58 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5568 elements 14:53:58 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:53:58 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:53:58 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:58 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:58 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:58 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:53:58 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53:58 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:53:58 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:58 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5568 elements 14:53:58 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5568 elements 14:53:58 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:53:58 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-26 06:00:00 (before) 2024-04-26 09:00:00 (after) 14:53:58 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-26 06:00:00) in space (linearNDFast) 14:53:58 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:58 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-26 09:00:00) in space (linearNDFast) 14:53:58 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:58 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-26 06:00:00, weight 0.43) and after (2024-04-26 09:00:00, weight 0.57) in time 14:53:58 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:58 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:58 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:58 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:53:58 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53: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 14:53:58 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:58 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5568 elements 14:53: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 5568 elements 14:53:58 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:53:58 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-26 06:00:00 (before) 2024-04-26 09:00:00 (after) 14:53:58 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-26 06:00:00) in space (linearNDFast) 14:53:58 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:58 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-26 09:00:00) in space (linearNDFast) 14:53:58 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:58 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-26 06:00:00, weight 0.43) and after (2024-04-26 09:00:00, weight 0.57) in time 14:53:58 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:58 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:58 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:53:58 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:53: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'] 14:53:58 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:53:58 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:53:58 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:53:58 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:53:58 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.291263 (min) 0.117211 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.283406 (min) 0.209592 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:905: x_wind: 5.25456 (min) 8.79889 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:905: y_wind: -4.38967 (min) -2.57121 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:53:58 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.874690, mean: 1.001415, max: 2.092562 14:53:58 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:53:58 DEBUG opendrift.models.physics_methods:1058: min: 5.095146, mean: 5.444365, max: 7.880771 14:53:58 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 5.095146, mean: 5.444365, max: 7.880771 14:53:58 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:53:58 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:53:58 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:53:58 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:53:58 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:53:58 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:53:58 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:53:58 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:53:58 DEBUG opendrift.models.physics_methods:1058: min: 5.095146, mean: 5.444365, max: 7.880772 14:53:58 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:53:58 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.041419, dN_50: 0.003251 14:53:58 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:53:58 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.030696383153214792 14:53:58 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:53:58 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:53:58 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:53:58 DEBUG opendrift.models.openoil.openoil:1036: Entraining 1 of 337 surface elements 14:53:58 DEBUG opendrift.models.physics_methods:912: Advecting 343 of 5568 elements above 0.100m with wind-sheared ocean current (0.031898 m/s - 0.276690 m/s) 14:53:58 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:53:58 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0012852643531104397 and 0.4617549012094949 m/s 14:53:58 DEBUG opendrift.models.basemodel:2097: 5568 active elements (432 deactivated) 14:53:58 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:53:58 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:53:58 INFO opendrift.models.basemodel:2011: 2024-04-26 08:42:41.057477 - step 115 of 120 - 5568 active elements (432 deactivated) 14:53:58 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:53:58 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:53:58 DEBUG opendrift.models.basemodel:2030: 34.75807145897704 <- latitude -> 35.436214462024154 14:53:58 DEBUG opendrift.models.basemodel:2035: 22.806265673555636 <- longitude -> 23.920526342203733 14:53:58 DEBUG opendrift.models.basemodel:2040: -50.75593646809573 <- z -> 0.0 14:53:58 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:53:58 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:58 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:53:58 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53:58 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:53:58 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:58 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5568 elements 14:53:58 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5568 elements 14:53:58 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:53:58 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:58 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:58 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:58 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:53:58 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53:58 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:53:58 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:58 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5568 elements 14:53:58 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5568 elements 14:53:58 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:53:58 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:53:58 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:58 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:58 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:58 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:53:58 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53:58 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:53:58 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:58 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5568 elements 14:53:58 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z covering 5568 elements 14:53:58 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:53:58 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-26 06:00:00 (before) 2024-04-26 09:00:00 (after) 14:53:58 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-26 06:00:00) in space (linearNDFast) 14:53:58 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:58 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-26 09:00:00) in space (linearNDFast) 14:53:58 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:58 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-26 06:00:00, weight 0.10) and after (2024-04-26 09:00:00, weight 0.90) in time 14:53:58 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:58 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:58 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:58 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:53:58 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53: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 14:53:58 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:58 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5568 elements 14:53: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 5568 elements 14:53:58 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:53:58 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-26 06:00:00 (before) 2024-04-26 09:00:00 (after) 14:53:58 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-26 06:00:00) in space (linearNDFast) 14:53:58 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:58 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-26 09:00:00) in space (linearNDFast) 14:53:58 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:58 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-26 06:00:00, weight 0.10) and after (2024-04-26 09:00:00, weight 0.90) in time 14:53:58 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:58 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:58 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:53:58 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:53: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'] 14:53:58 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:53:58 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:53:58 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:53:58 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:53:58 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.301886 (min) 0.136604 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.262056 (min) 0.204409 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:905: x_wind: 5.05125 (min) 8.90978 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:905: y_wind: -4.38046 (min) -2.3798 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:53:58 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:53:58 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.808230, mean: 0.935191, max: 2.092171 14:53:58 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:53:58 DEBUG opendrift.models.physics_methods:1058: min: 4.897755, mean: 5.260354, max: 7.880036 14:53:58 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.897755, mean: 5.260354, max: 7.880036 14:53:58 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:53:58 DEBUG opendrift.models.basemodel:2082: Calling OpenOil.update() 14:53:58 DEBUG opendrift.models.openoil.openoil:711: NOAA oil weathering 14:53:58 DEBUG opendrift.models.openoil.openoil:816: Calculating evaporation - NOAA 14:53:58 DEBUG opendrift.models.openoil.openoil:822: All surface oil elements older than 24 hours, skipping further evaporation. 14:53:58 DEBUG opendrift.models.openoil.openoil:849: Calculating emulsification - NOAA 14:53:58 DEBUG opendrift.models.openoil.openoil:552: Calculating: biodegradation (half_time) 14:53:58 DEBUG opendrift.models.physics_methods:1040: Using mean period Tm02 as wave period 14:53:58 DEBUG opendrift.models.physics_methods:1058: min: 4.897755, mean: 5.260354, max: 7.880035 14:53:58 DEBUG opendrift.models.openoil.openoil:1121: Generating wave breaking droplet size spectrum 14:53:58 DEBUG opendrift.models.openoil.openoil:1148: Droplet distribution median diameter dV_50: 0.042575, dN_50: 0.003341 14:53:58 DEBUG opendrift.models.oceandrift:521: Using diffusivity from Large1994 since model diffusivities not available 14:53:58 DEBUG opendrift.models.oceandrift:535: Diffusivities are in range 0.0 to 0.030690650503564627 14:53:58 DEBUG opendrift.models.oceandrift:554: TSprofiles deactivated for vertical mixing 14:53:58 DEBUG opendrift.models.oceandrift:568: Vertical mixing module:environment 14:53:58 DEBUG opendrift.models.oceandrift:571: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s 14:53:58 DEBUG opendrift.models.physics_methods:912: Advecting 343 of 5568 elements above 0.100m with wind-sheared ocean current (0.025717 m/s - 0.276664 m/s) 14:53:58 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 14:53:58 DEBUG opendrift.models.basemodel:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0027125580267722757 and 0.45404733654996066 m/s 14:53:58 DEBUG opendrift.models.basemodel:2097: 5568 active elements (432 deactivated) 14:53:58 DEBUG opendrift.models.basemodel:866: to be seeded: 0, already seeded 6000 14:53:58 DEBUG opendrift.models.basemodel:2010: ====================================================================== 14:53:58 INFO opendrift.models.basemodel:2011: 2024-04-26 09:42:41.057477 - step 116 of 120 - 5568 active elements (432 deactivated) 14:53:58 DEBUG opendrift.models.basemodel:2017: 0 elements scheduled. 14:53:58 DEBUG opendrift.models.basemodel:2019: ====================================================================== 14:53:58 DEBUG opendrift.models.basemodel:2030: 34.75240655694946 <- latitude -> 35.44701623992636 14:53:58 DEBUG opendrift.models.basemodel:2035: 22.802160546936058 <- longitude -> 23.92807551193874 14:53:58 DEBUG opendrift.models.basemodel:2040: -49.779954097695445 <- z -> 0.0 14:53:58 DEBUG opendrift.models.basemodel:2041: --------------------------------- 14:53:58 DEBUG opendrift.models.basemodel.environment:498: Discarding reader (ends before simuation is finished): https://tds.hycom.org/thredds/dodsC/GLBy0.08/expt_93.0/uv3z 14:53:58 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:58 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness'] 14:53:58 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53:58 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader 14:53:58 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:58 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5568 elements 14:53:58 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5568 elements 14:53:58 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:53:58 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:58 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:58 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:58 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask'] 14:53:58 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53:58 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask 14:53:58 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:58 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5568 elements 14:53:58 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5568 elements 14:53:58 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 14:53:58 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values 14:53:58 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:58 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:58 DEBUG opendrift.models.basemodel.environment:607: ---------------------------------------- 14:53:58 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind'] 14:53:58 DEBUG opendrift.models.basemodel.environment:609: ---------------------------------------- 14:53: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 14:53:58 DEBUG opendrift.models.basemodel.environment:614: ---------------------------------------- 14:53:58 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5568 elements 14:53: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 5568 elements 14:53:58 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360 14:53:58 DEBUG opendrift.readers.basereader.structured:222: Reader time: 2024-04-26 09:00:00 (before) 2024-04-26 12:00:00 (after) 14:53:58 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using eastward_wind to retrieve x_wind 14:53:59 DEBUG opendrift.readers.reader_netCDF_CF_generic:419: Using northward_wind to retrieve y_wind 14:53:59 DEBUG opendrift.readers.reader_netCDF_CF_generic:516: North is up, no rotation necessary 14:53:59 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values 14:53:59 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values 14:53:59 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 8x7x1) for time after (2024-04-26 12:00:00) 14:53:59 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-04-26 09:00:00) in space (linearNDFast) 14:53:59 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:59 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-04-26 12:00:00) in space (linearNDFast) 14:53:59 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator. 14:53:59 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-04-26 09:00:00, weight 0.76) and after (2024-04-26 12:00:00, weight 0.24) in time 14:53:59 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed. 14:53:59 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements. 14:53:59 DEBUG opendrift.models.basemodel.environment:777: --------------------------------------- 14:53:59 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups 14:53: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'] 14:53:59 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles 14:53:59 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles 14:53:59 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles 14:53:59 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY ------------- 14:53:59 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: nan (min) nan (max) 14:53:59 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: nan (min) nan (max) 14:53:59 DEBUG opendrift.models.basemodel.environment:905: x_wind: 4.88298 (min) 9.05713 (max) 14:53:59 DEBUG opendrift.models.basemodel.environment:905: y_wind: -4.45264 (min) -2.19309 (max) 14:53:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max) 14:53:59 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max) 14:53:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max) 14:53:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 14:53:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 14:53:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 14:53:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 14:53:59 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max) 14:53:59 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max) 14:53:59 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max) 14:53:59 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max) 14:53:59 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max) 14:53:59 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 14:53:59 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max) 14:53:59 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max) 14:53:59 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max) 14:53:59 DEBUG opendrift.models.basemodel.environment:907: --------------------------------- 14:53:59 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.774084, mean: 0.904098, max: 2.136296 14:53:59 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 14:53:59 DEBUG opendrift.models.physics_methods:1058: min: 4.793179, mean: 5.169528, max: 7.962700 14:53:59 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.793179, mean: 5.169528, max: 7.962700 14:53:59 WARNING opendrift.models.basemodel:2298: Missing variables: ['x_sea_water_velocity', 'y_sea_water_velocity'] 14:53:59 DEBUG opendrift.models.basemodel:1656: Added status missing_data 14:53:59 DEBUG opendrift.models.basemodel:1667: 5568 elements scheduled for deactivation (missing_data) 14:53:59 DEBUG opendrift.models.basemodel:1669: (z: -49.779954 to 0.000000) 14:53:59 DEBUG opendrift.models.basemodel:1687: Removed 5568 elements. 14:53:59 DEBUG opendrift.models.basemodel:1690: Removed 5568 values from environment. 14:53:59 DEBUG opendrift.models.basemodel:1695: remove items from profile for z 14:53:59 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_temperature 14:53:59 DEBUG opendrift.models.basemodel:1695: remove items from profile for sea_water_salinity 14:53:59 DEBUG opendrift.models.basemodel:1695: remove items from profile for ocean_vertical_diffusivity 14:53:59 DEBUG opendrift.models.basemodel:1699: Removed 5568 values from environment_profiles. 14:53:59 WARNING opendrift.models.basemodel:2107: The simulation stopped before requested end time was reached. 14:53:59 INFO opendrift.models.basemodel:2109: ======================== 14:53:59 INFO opendrift.models.basemodel:2110: End of simulation: 14:53:59 INFO opendrift.models.basemodel:2111: No more active or scheduled elements, quitting. 14:53:59 INFO opendrift.models.basemodel:2112: Traceback (most recent call last): File "/root/project/opendrift/models/basemodel/__init__.py", line 2074, in run raise ValueError( ValueError: No more active or scheduled elements, quitting. 14:53:59 INFO opendrift.models.basemodel:2113: "Missing variables: ['x_sea_water_velocity', 'y_sea_water_velocity']", 'The simulation stopped before requested end time was reached.' 14:53:59 INFO opendrift.models.basemodel:2116: ======================== 14:53:59 DEBUG opendrift.models.basemodel:2126: Cleaning up 14:53:59 DEBUG opendrift.models.basemodel:2156: Writing and closing output file: oil.nc 14:53:59 INFO opendrift.export.io_netcdf:116: Wrote 17 steps to file oil.nc 14:53:59 DEBUG opendrift.export.io_netcdf:176: Making netCDF file CDM compliant with fixed dimensions 14:54:00 DEBUG opendrift.models.basemodel:1683: No elements to deactivate 14:54:00 DEBUG opendrift.export.io_netcdf:281: 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) 14:54:01 DEBUG opendrift.models.basemodel:1687: Removed 6000 elements. 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: environment:constant:x_sea_water_velocity -> None 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: environment:fallback:x_sea_water_velocity -> None 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: environment:constant:y_sea_water_velocity -> None 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: environment:fallback:y_sea_water_velocity -> None 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: environment:constant:x_wind -> None 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: environment:fallback:x_wind -> None 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: environment:constant:y_wind -> None 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: environment:fallback:y_wind -> None 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: environment:constant:sea_surface_height -> None 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: environment:fallback:sea_surface_height -> 0 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: environment:constant:upward_sea_water_velocity -> None 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: environment:fallback:upward_sea_water_velocity -> 0 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: environment:constant:sea_surface_wave_significant_height -> None 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: environment:fallback:sea_surface_wave_significant_height -> 0 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: environment:constant:sea_surface_wave_stokes_drift_x_velocity -> None 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: environment:fallback:sea_surface_wave_stokes_drift_x_velocity -> 0 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: environment:constant:sea_surface_wave_stokes_drift_y_velocity -> None 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: environment:fallback:sea_surface_wave_stokes_drift_y_velocity -> 0 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: environment:constant:sea_surface_wave_period_at_variance_spectral_density_maximum -> None 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: environment:fallback:sea_surface_wave_period_at_variance_spectral_density_maximum -> 0 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: environment:constant:sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment -> None 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: environment:fallback:sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment -> 0 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: environment:constant:sea_ice_area_fraction -> None 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: environment:fallback:sea_ice_area_fraction -> 0 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: environment:constant:sea_ice_x_velocity -> None 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: environment:fallback:sea_ice_x_velocity -> 0 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: environment:constant:sea_ice_y_velocity -> None 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: environment:fallback:sea_ice_y_velocity -> 0 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: environment:constant:sea_water_temperature -> None 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: environment:fallback:sea_water_temperature -> 10 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: environment:constant:sea_water_salinity -> None 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: environment:fallback:sea_water_salinity -> 34 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: environment:constant:sea_floor_depth_below_sea_level -> None 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: environment:fallback:sea_floor_depth_below_sea_level -> 10000 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: environment:constant:ocean_vertical_diffusivity -> None 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: environment:fallback:ocean_vertical_diffusivity -> 0.02 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: environment:constant:land_binary_mask -> None 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: environment:fallback:land_binary_mask -> None 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: environment:constant:ocean_mixed_layer_thickness -> 20.0 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: environment:fallback:ocean_mixed_layer_thickness -> 50 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: general:use_auto_landmask -> True 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: drift:current_uncertainty -> 0.0 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: drift:current_uncertainty_uniform -> 0 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: drift:max_speed -> 1.3 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: readers:max_number_of_fails -> 1 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: general:coastline_action -> stranding 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: general:time_step_minutes -> 60 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: general:time_step_output_minutes -> None 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: seed:ocean_only -> True 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: seed:number -> 1 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: drift:max_age_seconds -> None 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: drift:advection_scheme -> euler 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: drift:horizontal_diffusivity -> 20.0 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: drift:profiles_depth -> 50 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: drift:wind_uncertainty -> 0.0 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: drift:relative_wind -> False 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: drift:deactivate_north_of -> None 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: drift:deactivate_south_of -> None 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: drift:deactivate_east_of -> None 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: drift:deactivate_west_of -> None 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: seed:origin_marker -> 0 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: seed:z -> 0 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: seed:wind_drift_factor -> 0.03 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: seed:current_drift_factor -> 1 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: seed:terminal_velocity -> 0.0 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: seed:oil_film_thickness -> 0.001 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: drift:vertical_advection -> False 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: drift:vertical_mixing -> True 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: vertical_mixing:timestep -> 60 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: vertical_mixing:diffusivitymodel -> environment 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: vertical_mixing:background_diffusivity -> 1.2e-05 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: vertical_mixing:TSprofiles -> False 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: drift:wind_drift_depth -> 0.1 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: drift:stokes_drift -> True 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: drift:stokes_drift_profile -> Phillips 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: drift:use_tabularised_stokes_drift -> False 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: drift:tabularised_stokes_drift_fetch -> 25000 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: general:seafloor_action -> lift_to_seafloor 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: drift:truncate_ocean_model_below_m -> None 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: seed:seafloor -> False 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: seed:m3_per_hour -> 1 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: seed:droplet_size_distribution -> uniform 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: seed:droplet_diameter_mu -> 0.001 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: seed:droplet_diameter_sigma -> 0.0005 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: seed:droplet_diameter_min_subsea -> 0.0005 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: seed:droplet_diameter_max_subsea -> 0.005 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: processes:dispersion -> False 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: processes:evaporation -> True 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: processes:emulsification -> True 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: processes:biodegradation -> True 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: biodegradation:method -> half_time 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: processes:update_oilfilm_thickness -> False 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: wave_entrainment:droplet_size_distribution -> Johansen et al. (2015) 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: wave_entrainment:entrainment_rate -> Li et al. (2017) 14:54:01 DEBUG opendrift.export.io_netcdf:380: Setting imported config: seed:oil_type -> GENERIC MEDIUM CRUDE 14:54:01 DEBUG opendrift.models.basemodel:92: Changed mode from Mode.Result to Mode.Result .. GENERATED FROM PYTHON SOURCE LINES 50-51 Plot and animate results .. GENERATED FROM PYTHON SOURCE LINES 51-52 .. code-block:: Python o.animation(color='z', markersize='mass_oil', markersize_scaling=80) .. rst-class:: sphx-glr-script-out .. code-block:: none 14:54:01 DEBUG opendrift.models.basemodel:2333: Setting up map: corners=None, fast=False, lscale=None 14:54:02 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:54:14 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:54:16 DEBUG opendrift.models.basemodel:3010: Saving animation.. 14:54:16 INFO opendrift.models.basemodel:4563: Saving animation to /root/project/docs/source/gallery/animations/example_oilspill_seafloor_biodegradation_0.gif... 14:54:16 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:54:18 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:54:19 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:54:21 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:54:22 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:54:24 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:54:25 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:54:27 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:54:29 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:54:30 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:54:32 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:54:33 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:54:35 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:54:36 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:54:38 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:54:39 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:54:41 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:54:42 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:54:44 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:54:45 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:54:47 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:54:48 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:54:50 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:54:51 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:54:52 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:54:54 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:54:55 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:54:56 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:54:58 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:54:59 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:55:01 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:55:02 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:55:04 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:55:05 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:55:06 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:55:08 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:55:09 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:55:11 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:55:12 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:55:14 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:55:15 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:55:16 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:55:18 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:55:19 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:55:21 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:55:22 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:55:24 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:55:25 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:55:27 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:55:28 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:55:30 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:55:32 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:55:33 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:55:35 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:55:37 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:55:38 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:55:40 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:55:41 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:55:43 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:55:44 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:55:46 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:55:48 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:55:50 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:55:51 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:55:53 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:55:54 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:55:56 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:55:57 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:55:59 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:56:00 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:56:02 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:56:04 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:56:05 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:56:07 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:56:08 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:56:10 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:56:12 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:56:13 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:56:15 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:56:17 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:56:18 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:56:20 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:56:21 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:56:23 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:56:26 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:56:27 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:56:29 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:56:30 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:56:32 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:56:34 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:56:36 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:56:37 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:56:39 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:56:41 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:56:43 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:56:45 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:56:47 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:56:48 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:56:50 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:56:52 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:56:54 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:56:55 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:56:57 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:56:59 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:57:00 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:57:02 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:57:03 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:57:05 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:57:07 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:57:09 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:57:11 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:57:12 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:57:14 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:57:15 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:57:17 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:57:18 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:57:20 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:57:22 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:57:23 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:57:25 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:57:27 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:57:28 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:57:31 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:57:32 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:57:34 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:57:36 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:57:37 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:57:39 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:57:41 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:57:42 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:57:44 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:57:45 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:57:47 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:57:48 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:57:50 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:57:52 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:57:53 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:57:55 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:57:56 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:57:58 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:57:59 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:58:01 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:58:03 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:58:04 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:58:06 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:58:07 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:58:09 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:58:11 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:58:12 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:58:14 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:58:15 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:58:16 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:58:18 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:58:19 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:58:21 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:58:22 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:58:24 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:58:26 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:58:28 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:58:29 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:58:31 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:58:32 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:58:34 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:58:35 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:58:37 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:58:38 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:58:40 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:58:41 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:58:43 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:58:44 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:58:46 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:58:47 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:58:49 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:58:50 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:58:52 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:58:53 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:58:55 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:58:56 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:58:58 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:58:59 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:59:01 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:59:03 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:59:04 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:59:06 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:59:07 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:59:09 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:59:10 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:59:12 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:59:13 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:59:15 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:59:17 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:59:18 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:59:19 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:59:21 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:59:22 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:59:24 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:59:25 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:59:27 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:59:29 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:59:30 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:59:32 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:59:33 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:59:35 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:59:36 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:59:38 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:59:39 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:59:41 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:59:42 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:59:43 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:59:45 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:59:46 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:59:48 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:59:49 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:59:51 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:59:53 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:59:54 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:59:56 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:59:57 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 14:59:59 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 15:00:00 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 15:00:02 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 15:00:03 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 15:00:04 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 15:00:06 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 15:00:07 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 15:00:08 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 15:00:10 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 15:00:11 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 15:00:13 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 15:00:14 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 15:00:16 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 15:00:17 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 15:00:19 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 15:00:20 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (22.402160263061525, 24.328075790405272, 34.552407073974614, 35.90112991333008).. 15:00:25 DEBUG opendrift.models.basemodel:4601: MPLBACKEND = agg 15:00:25 DEBUG opendrift.models.basemodel:4602: DISPLAY = None 15:00:25 DEBUG opendrift.models.basemodel:4603: Time to save animation: 0:06:09.156041 15:00:25 INFO opendrift.models.basemodel:3003: Time to make animation: 0:06:23.965942 .. GENERATED FROM PYTHON SOURCE LINES 53-54 .. image:: /gallery/animations/example_oilspill_seafloor_biodegradation_0.gif .. GENERATED FROM PYTHON SOURCE LINES 54-57 .. code-block:: Python o.plot_oil_budget(show_watercontent_and_viscosity=False, show_wind_and_current=False) .. image-sg:: /gallery/images/sphx_glr_example_oilspill_seafloor_biodegradation_001.png :alt: GENERIC MEDIUM CRUDE (880.4 kg/m3) - 2024-04-21 14:42 to 2024-04-26 10:42 :srcset: /gallery/images/sphx_glr_example_oilspill_seafloor_biodegradation_001.png :class: sphx-glr-single-img .. GENERATED FROM PYTHON SOURCE LINES 58-59 Custom oil budget plot .. GENERATED FROM PYTHON SOURCE LINES 59-73 .. code-block:: Python 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() .. image-sg:: /gallery/images/sphx_glr_example_oilspill_seafloor_biodegradation_002.png :alt: GENERIC MEDIUM CRUDE, 880.40 kg/m3 :srcset: /gallery/images/sphx_glr_example_oilspill_seafloor_biodegradation_002.png :class: sphx-glr-single-img .. GENERATED FROM PYTHON SOURCE LINES 74-75 Animation of vertical behaviour .. GENERATED FROM PYTHON SOURCE LINES 75-76 .. code-block:: Python o.animation_profile(markersize='mass_oil', markersize_scaling=80, color='z', alpha=.5) .. rst-class:: sphx-glr-script-out .. code-block:: none 15:00:28 DEBUG opendrift.models.basemodel:3010: Saving animation.. 15:00:28 INFO opendrift.models.basemodel:4563: Saving animation to /root/project/docs/source/gallery/animations/example_oilspill_seafloor_biodegradation_1.gif... 15:00:42 DEBUG opendrift.models.basemodel:4601: MPLBACKEND = agg 15:00:42 DEBUG opendrift.models.basemodel:4602: DISPLAY = None 15:00:42 DEBUG opendrift.models.basemodel:4603: Time to save animation: 0:00:14.110613 15:00:42 INFO opendrift.models.basemodel:3217: Time to make animation: 0:00:14.788861 .. GENERATED FROM PYTHON SOURCE LINES 77-78 .. image:: /gallery/animations/example_oilspill_seafloor_biodegradation_1.gif .. rst-class:: sphx-glr-timing **Total running time of the script:** (18 minutes 3.178 seconds) .. _sphx_glr_download_gallery_example_oilspill_seafloor_biodegradation.py: .. only:: html .. container:: sphx-glr-footer sphx-glr-footer-example .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: example_oilspill_seafloor_biodegradation.ipynb ` .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: example_oilspill_seafloor_biodegradation.py ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_