Note
Go to the end to download the full example code.
Biodegradation of oil
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()
# No motion is needed for this test
o.set_config('environment:constant', {k: 0 for k in
['x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity']})
o.set_config('drift', {'current_uncertainty': 0, 'wind_uncertainty': 0, 'horizontal_diffusivity': 10})
18:15:52 DEBUG opendrift.config:168: Adding 18 config items from __init__
18:15:52 DEBUG opendrift.config:178: Overwriting config item readers:max_number_of_fails
18:15:52 DEBUG opendrift.config:168: Adding 6 config items from __init__
18:15:52 INFO opendrift:576: OpenDriftSimulation initialised (version 1.14.6 / v1.14.6-11-g8e92c12)
18:15:52 DEBUG opendrift.config:168: Adding 19 config items from oceandrift
18:15:52 DEBUG opendrift.config:178: Overwriting config item seed:z
18:15:52 DEBUG opendrift.config:168: Adding 15 config items from openoil
18:15:52 INFO opendrift.config:68: set_config('environment:constant:x_wind', 0)
18:15:52 INFO opendrift.config:68: set_config('environment:constant:y_wind', 0)
18:15:52 INFO opendrift.config:68: set_config('environment:constant:x_sea_water_velocity', 0)
18:15:52 INFO opendrift.config:68: set_config('environment:constant:y_sea_water_velocity', 0)
18:15:52 INFO opendrift.config:68: set_config('drift:current_uncertainty', 0)
18:15:52 INFO opendrift.config:68: set_config('drift:wind_uncertainty', 0)
18:15:52 INFO opendrift.config:68: set_config('drift:horizontal_diffusivity', 10)
Seeding some particles
o.set_config('drift:vertical_mixing', True)
o.set_config('processes:biodegradation', True)
o.set_config('biodegradation:method', 'half_time')
Fast decay for droplets, and slow decay for slick
kwargs = {'biodegradation_half_time_slick': 3, # days
'biodegradation_half_time_droplet': 1, # days
'oil_type': 'GENERIC MEDIUM CRUDE', 'm3_per_hour': .5, 'diameter': 1e-5} # small droplets
Seed 500 oil elements at surface, and 500 elements at 50m depth
o.seed_elements(lon=4, lat=60.0, z=0, number=500, time=datetime.now(), **kwargs)
o.seed_elements(lon=4, lat=60.0, z=-50, number=500, time=datetime.now(), **kwargs)
18:15:52 INFO opendrift.models.openoil.openoil:1630: Droplet diameter is provided, and will be kept constant during simulation
18:15:52 INFO opendrift.models.openoil.adios.dirjs:86: Querying ADIOS database for oil: GENERIC MEDIUM CRUDE
18:15:52 DEBUG opendrift.models.openoil.adios.oil:76: Parsing Oil: AD04001 / GENERIC MEDIUM CRUDE
18:15:52 INFO opendrift.models.openoil.openoil:1717: Using density 877.5726099999999 and viscosity 4.5431401718650355e-05 of oiltype GENERIC MEDIUM CRUDE
18:15:52 DEBUG opendrift.readers.basereader:186: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated
18:15:52 DEBUG opendrift.readers.basereader.variables:569: Adding variable mapping: ['x_wind', 'y_wind'] -> wind_speed
18:15:52 DEBUG opendrift.readers.basereader.variables:569: Adding variable mapping: ['x_sea_water_velocity', 'y_sea_water_velocity'] -> sea_water_speed
18:15:52 DEBUG opendrift.models.basemodel.environment:313: Added reader constant_reader
18:15:52 INFO opendrift.models.basemodel.environment:203: Adding a global landmask from GSHHG
18:15:52 DEBUG opendrift.readers.basereader:186: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated
18:15:56 DEBUG opendrift.models.basemodel.environment:313: Added reader global_landmask
18:15:56 INFO opendrift.models.basemodel.environment:227: Fallback values will be used for the following variables which have no readers:
18:15:56 INFO opendrift.models.basemodel.environment:230: sea_surface_height: 0.000000
18:15:56 INFO opendrift.models.basemodel.environment:230: upward_sea_water_velocity: 0.000000
18:15:56 INFO opendrift.models.basemodel.environment:230: sea_surface_wave_significant_height: 0.000000
18:15:56 INFO opendrift.models.basemodel.environment:230: sea_surface_wave_stokes_drift_x_velocity: 0.000000
18:15:56 INFO opendrift.models.basemodel.environment:230: sea_surface_wave_stokes_drift_y_velocity: 0.000000
18:15:56 INFO opendrift.models.basemodel.environment:230: sea_surface_wave_period_at_variance_spectral_density_maximum: 0.000000
18:15:56 INFO opendrift.models.basemodel.environment:230: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0.000000
18:15:56 INFO opendrift.models.basemodel.environment:230: sea_ice_area_fraction: 0.000000
18:15:56 INFO opendrift.models.basemodel.environment:230: sea_ice_x_velocity: 0.000000
18:15:56 INFO opendrift.models.basemodel.environment:230: sea_ice_y_velocity: 0.000000
18:15:56 INFO opendrift.models.basemodel.environment:230: sea_water_temperature: 10.000000
18:15:56 INFO opendrift.models.basemodel.environment:230: sea_water_salinity: 34.000000
18:15:56 INFO opendrift.models.basemodel.environment:230: sea_floor_depth_below_sea_level: 10000.000000
18:15:56 INFO opendrift.models.basemodel.environment:230: ocean_vertical_diffusivity: 0.020000
18:15:56 INFO opendrift.models.basemodel.environment:230: ocean_mixed_layer_thickness: 50.000000
18:15:56 DEBUG opendrift:164: Changed mode from Mode.Config to Mode.Ready
18:15:56 INFO opendrift.models.openoil.openoil:1630: Droplet diameter is provided, and will be kept constant during simulation
18:15:56 INFO opendrift.models.openoil.adios.dirjs:86: Querying ADIOS database for oil: GENERIC MEDIUM CRUDE
18:15:56 DEBUG opendrift.models.openoil.adios.oil:76: Parsing Oil: AD04001 / GENERIC MEDIUM CRUDE
18:15:56 INFO opendrift.models.openoil.openoil:1717: Using density 877.5726099999999 and viscosity 4.5431401718650355e-05 of oiltype GENERIC MEDIUM CRUDE
Running model
o.run(duration=timedelta(hours=72), time_step=3600)
18:15:56 DEBUG opendrift:164: Changed mode from Mode.Ready to Mode.Run
18:15:56 DEBUG opendrift:1775:
------------------------------------------------------
Software and hardware:
OpenDrift version 1.14.6
Platform: Linux, 6.8.0-1040-aws
4.0 GB memory
36 processors (x86_64)
NumPy version 2.3.4
SciPy version 1.16.3
Matplotlib version 3.10.7
NetCDF4 version 1.7.3
Xarray version 2025.10.1
ADIOS (adios_db) version 1.2.5
Copernicusmarine version 2.2.3
Python version 3.14.0 | packaged by conda-forge | (main, Oct 22 2025, 23:24:08) [GCC 14.3.0]
------------------------------------------------------
18:15:56 DEBUG opendrift:1788: No output file is specified, neglecting export_buffer_length
18:15:56 INFO opendrift:1803: Skipping environment variable upward_sea_water_velocity because of condition ['drift:vertical_advection', 'is', False]
18:15:56 INFO opendrift:1814: Storing previous values of element property lon because of condition (('general:coastline_action', 'in', ['stranding', 'previous']), 'or', ('general:seafloor_action', 'in', ['previous']))
18:15:56 INFO opendrift:1814: Storing previous values of element property lat because of condition (('general:coastline_action', 'in', ['stranding', 'previous']), 'or', ('general:seafloor_action', 'in', ['previous']))
18:15:56 DEBUG opendrift:1937: Finalizing environment and preparing readers for simulation coverage ([-2.07135171 56.96432432 10.07135171 63.03567568]) and time (2025-11-10 18:15:52.454745 to 2025-11-13 18:15:52.454745)
18:15:56 DEBUG opendrift.models.basemodel.environment:166: Preparing constant_reader for extent [-2.07135171 56.96432432 10.07135171 63.03567568]
18:15:56 DEBUG opendrift.readers.basereader.variables:555: Nothing more to prepare for constant_reader
18:15:56 DEBUG opendrift.models.basemodel.environment:166: Preparing global_landmask for extent [-2.07135171 56.96432432 10.07135171 63.03567568]
18:15:56 DEBUG opendrift.readers.basereader.variables:555: Nothing more to prepare for global_landmask
18:15:56 DEBUG opendrift:2033: Initial self.result, size Frozen({'trajectory': 1000, 'time': 73})
18:15:56 INFO opendrift:952: Using existing reader for land_binary_mask to move elements to ocean
18:15:56 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:56 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:15:56 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:56 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:15:56 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:56 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:56 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:15:56 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:56 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:15:56 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:56 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:56 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:15:56 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:15:56 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:15:56 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:15:56 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:15:56 INFO opendrift:982: All points are in ocean
18:15:56 INFO opendrift.models.openoil.openoil:692: Oil-water surface tension is 0.031369 Nm
18:15:56 INFO opendrift.models.openoil.openoil:705: Max water fraction not available for GENERIC MEDIUM CRUDE, using default
18:15:56 DEBUG opendrift:909: to be seeded: 1000, already seeded 0
18:15:56 DEBUG opendrift:931: Released 1000 new elements.
18:15:56 DEBUG opendrift:2109: ======================================================================
18:15:56 INFO opendrift:2110: 2025-11-10 18:15:52.454745 - step 1 of 72 - 1000 active elements (0 deactivated)
18:15:56 DEBUG opendrift:2116: 0 elements scheduled.
18:15:56 DEBUG opendrift:2118: ======================================================================
18:15:56 DEBUG opendrift:2127: latitude = 60.0
18:15:56 DEBUG opendrift:2127: longitude = 4.0
18:15:56 DEBUG opendrift:2129: -50.0 <- z -> 0.0
18:15:56 DEBUG opendrift:2130: ---------------------------------
18:15:56 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:56 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:15:56 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:56 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:15:56 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:56 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:56 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:15:56 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:56 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:15:56 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:15:56 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:15:56 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:15:56 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:56 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:56 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:56 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:15:56 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:56 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:15:56 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:56 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:56 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:15:56 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:56 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:15:56 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:56 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:56 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:15:56 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:15:56 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:15:56 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:15:56 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:15:56 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:15:56 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:15:56 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:15:56 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:15:56 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:15:56 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:15:56 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:15:56 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:15:56 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:15:56 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:15:56 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:15:56 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:15:56 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:15:56 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:15:56 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:15:56 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:15:56 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:15:56 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:15:56 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:15:56 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:15:56 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:15:56 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:15:56 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:15:56 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:15:56 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:56 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:15:56 DEBUG opendrift:696: No elements hit coastline.
18:15:56 DEBUG opendrift:1707: No elements to deactivate
18:15:56 DEBUG opendrift:2166: Calling OpenOil.update()
18:15:56 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:15:56 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:15:56 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:15:56 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:15:56 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:15:56 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:15:56 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:56 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:15:56 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:15:56 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:56 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:15:56 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:15:56 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:15:56 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:15:56 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:15:56 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:15:56 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:15:56 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:15:56 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:15:56 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:15:56 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.005230950457444111 and 0.2866440990165205 m/s
18:15:56 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:15:56 DEBUG opendrift:2109: ======================================================================
18:15:56 INFO opendrift:2110: 2025-11-10 19:15:52.454745 - step 2 of 72 - 1000 active elements (0 deactivated)
18:15:56 DEBUG opendrift:2116: 0 elements scheduled.
18:15:56 DEBUG opendrift:2118: ======================================================================
18:15:56 DEBUG opendrift:2129: 59.99300559059121 <- latitude -> 60.00925996553464
18:15:56 DEBUG opendrift:2129: 3.9826896316630602 <- longitude -> 4.016277231133427
18:15:56 DEBUG opendrift:2129: -51.00964196365002 <- z -> 0.0
18:15:56 DEBUG opendrift:2130: ---------------------------------
18:15:56 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:56 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:15:56 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:56 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:15:56 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:56 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:56 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:15:56 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:56 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:15:56 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:15:56 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:15:56 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:15:56 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:56 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:56 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:56 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:15:56 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:56 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:15:56 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:56 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:56 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:15:56 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:56 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:15:56 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:56 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:56 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:15:56 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:15:56 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:15:56 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:15:56 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:15:56 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:15:56 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:15:56 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:15:56 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:15:56 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:15:56 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:15:56 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:15:56 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:15:56 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:15:56 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:15:56 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:15:56 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:15:56 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:15:56 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:15:56 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:15:56 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:15:56 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:15:56 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:15:56 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:15:56 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:15:56 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:15:56 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:15:56 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:15:56 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:15:56 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:56 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:15:56 DEBUG opendrift:696: No elements hit coastline.
18:15:56 DEBUG opendrift:1707: No elements to deactivate
18:15:56 DEBUG opendrift:2166: Calling OpenOil.update()
18:15:56 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:15:56 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:15:56 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:15:56 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:15:56 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:15:56 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:15:56 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:56 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:15:56 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:15:56 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:56 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:15:56 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:15:56 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:15:56 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:15:56 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:15:56 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:15:56 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:15:56 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:15:57 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:15:57 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:15:57 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0036361161308154795 and 0.28366168985017537 m/s
18:15:57 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:15:57 DEBUG opendrift:2109: ======================================================================
18:15:57 INFO opendrift:2110: 2025-11-10 20:15:52.454745 - step 3 of 72 - 1000 active elements (0 deactivated)
18:15:57 DEBUG opendrift:2116: 0 elements scheduled.
18:15:57 DEBUG opendrift:2118: ======================================================================
18:15:57 DEBUG opendrift:2129: 59.99089801076382 <- latitude -> 60.01007087343849
18:15:57 DEBUG opendrift:2129: 3.9753494955027637 <- longitude -> 4.02853504361713
18:15:57 DEBUG opendrift:2129: -51.04946722829375 <- z -> 0.0
18:15:57 DEBUG opendrift:2130: ---------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:15:57 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:15:57 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:57 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:15:57 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:57 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:15:57 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:15:57 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:15:57 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:15:57 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:57 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:57 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:15:57 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:15:57 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:57 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:15:57 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:57 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:15:57 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:57 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:57 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:15:57 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:15:57 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:15:57 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:15:57 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:15:57 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:15:57 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:15:57 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:15:57 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:15:57 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:57 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:15:57 DEBUG opendrift:696: No elements hit coastline.
18:15:57 DEBUG opendrift:1707: No elements to deactivate
18:15:57 DEBUG opendrift:2166: Calling OpenOil.update()
18:15:57 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:15:57 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:15:57 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:15:57 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:15:57 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:15:57 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:15:57 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:57 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:15:57 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:15:57 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:57 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:15:57 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:15:57 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:15:57 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:15:57 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:15:57 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:15:57 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:15:57 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:15:57 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:15:57 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:15:57 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0034401185184955384 and 0.3102105653225473 m/s
18:15:57 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:15:57 DEBUG opendrift:2109: ======================================================================
18:15:57 INFO opendrift:2110: 2025-11-10 21:15:52.454745 - step 4 of 72 - 1000 active elements (0 deactivated)
18:15:57 DEBUG opendrift:2116: 0 elements scheduled.
18:15:57 DEBUG opendrift:2118: ======================================================================
18:15:57 DEBUG opendrift:2129: 59.98600372795558 <- latitude -> 60.01479617288675
18:15:57 DEBUG opendrift:2129: 3.975385352380496 <- longitude -> 4.028573218792662
18:15:57 DEBUG opendrift:2129: -51.434883603088664 <- z -> 0.0
18:15:57 DEBUG opendrift:2130: ---------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:15:57 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:15:57 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:57 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:15:57 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:57 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:15:57 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:15:57 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:15:57 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:15:57 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:57 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:57 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:15:57 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:15:57 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:57 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:15:57 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:57 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:15:57 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:57 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:57 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:15:57 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:15:57 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:15:57 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:15:57 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:15:57 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:15:57 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:15:57 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:15:57 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:15:57 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:57 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:15:57 DEBUG opendrift:696: No elements hit coastline.
18:15:57 DEBUG opendrift:1707: No elements to deactivate
18:15:57 DEBUG opendrift:2166: Calling OpenOil.update()
18:15:57 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:15:57 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:15:57 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:15:57 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:15:57 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:15:57 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:15:57 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:57 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:15:57 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:15:57 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:57 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:15:57 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:15:57 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:15:57 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:15:57 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:15:57 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:15:57 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:15:57 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:15:57 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:15:57 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:15:57 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.004201980796857228 and 0.27556120226147685 m/s
18:15:57 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:15:57 DEBUG opendrift:2109: ======================================================================
18:15:57 INFO opendrift:2110: 2025-11-10 22:15:52.454745 - step 5 of 72 - 1000 active elements (0 deactivated)
18:15:57 DEBUG opendrift:2116: 0 elements scheduled.
18:15:57 DEBUG opendrift:2118: ======================================================================
18:15:57 DEBUG opendrift:2129: 59.9844101374394 <- latitude -> 60.01406615811446
18:15:57 DEBUG opendrift:2129: 3.9722295759831923 <- longitude -> 4.031867805572941
18:15:57 DEBUG opendrift:2129: -51.6836299797262 <- z -> 0.0
18:15:57 DEBUG opendrift:2130: ---------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:15:57 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:15:57 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:57 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:15:57 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:57 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:15:57 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:15:57 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:15:57 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:15:57 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:57 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:57 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:15:57 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:15:57 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:57 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:15:57 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:57 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:15:57 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:57 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:57 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:15:57 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:15:57 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:15:57 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:15:57 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:15:57 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:15:57 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:15:57 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:15:57 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:15:57 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:57 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:15:57 DEBUG opendrift:696: No elements hit coastline.
18:15:57 DEBUG opendrift:1707: No elements to deactivate
18:15:57 DEBUG opendrift:2166: Calling OpenOil.update()
18:15:57 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:15:57 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:15:57 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:15:57 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:15:57 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:15:57 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:15:57 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:57 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:15:57 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:15:57 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:57 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:15:57 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:15:57 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:15:57 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:15:57 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:15:57 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:15:57 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:15:57 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:15:57 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:15:57 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:15:57 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0025847043089351094 and 0.28448278396433224 m/s
18:15:57 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:15:57 DEBUG opendrift:2109: ======================================================================
18:15:57 INFO opendrift:2110: 2025-11-10 23:15:52.454745 - step 6 of 72 - 1000 active elements (0 deactivated)
18:15:57 DEBUG opendrift:2116: 0 elements scheduled.
18:15:57 DEBUG opendrift:2118: ======================================================================
18:15:57 DEBUG opendrift:2129: 59.981783784070814 <- latitude -> 60.0182670614452
18:15:57 DEBUG opendrift:2129: 3.9704418854766557 <- longitude -> 4.035712451412108
18:15:57 DEBUG opendrift:2129: -52.04347041355175 <- z -> 0.0
18:15:57 DEBUG opendrift:2130: ---------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:15:57 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:15:57 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:57 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:15:57 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:57 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:15:57 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:15:57 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:15:57 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:15:57 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:57 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:57 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:15:57 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:15:57 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:57 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:15:57 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:57 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:15:57 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:57 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:57 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:15:57 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:15:57 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:15:57 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:15:57 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:15:57 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:15:57 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:15:57 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:15:57 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:15:57 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:57 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:15:57 DEBUG opendrift:696: No elements hit coastline.
18:15:57 DEBUG opendrift:1707: No elements to deactivate
18:15:57 DEBUG opendrift:2166: Calling OpenOil.update()
18:15:57 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:15:57 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:15:57 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:15:57 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:15:57 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:15:57 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:15:57 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:57 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:15:57 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:15:57 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:57 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:15:57 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:15:57 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:15:57 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:15:57 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:15:57 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:15:57 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:15:57 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:15:57 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:15:57 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:15:57 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.004774221774378705 and 0.2689882721199039 m/s
18:15:57 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:15:57 DEBUG opendrift:2109: ======================================================================
18:15:57 INFO opendrift:2110: 2025-11-11 00:15:52.454745 - step 7 of 72 - 1000 active elements (0 deactivated)
18:15:57 DEBUG opendrift:2116: 0 elements scheduled.
18:15:57 DEBUG opendrift:2118: ======================================================================
18:15:57 DEBUG opendrift:2129: 59.98110651443229 <- latitude -> 60.018814674233205
18:15:57 DEBUG opendrift:2129: 3.9677675573782927 <- longitude -> 4.03894219395905
18:15:57 DEBUG opendrift:2129: -52.42404289079638 <- z -> 0.0
18:15:57 DEBUG opendrift:2130: ---------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:15:57 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:15:57 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:57 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:15:57 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:57 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:15:57 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:15:57 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:15:57 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:15:57 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:57 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:57 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:15:57 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:15:57 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:57 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:15:57 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:57 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:15:57 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:57 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:57 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:15:57 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:15:57 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:15:57 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:15:57 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:15:57 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:15:57 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:15:57 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:15:57 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:15:57 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:57 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:15:57 DEBUG opendrift:696: No elements hit coastline.
18:15:57 DEBUG opendrift:1707: No elements to deactivate
18:15:57 DEBUG opendrift:2166: Calling OpenOil.update()
18:15:57 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:15:57 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:15:57 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:15:57 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:15:57 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:15:57 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:15:57 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:57 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:15:57 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:15:57 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:57 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:15:57 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:15:57 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:15:57 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:15:57 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:15:57 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:15:57 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:15:57 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:15:57 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:15:57 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:15:57 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0035847303639862144 and 0.3056118354589426 m/s
18:15:57 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:15:57 DEBUG opendrift:2109: ======================================================================
18:15:57 INFO opendrift:2110: 2025-11-11 01:15:52.454745 - step 8 of 72 - 1000 active elements (0 deactivated)
18:15:57 DEBUG opendrift:2116: 0 elements scheduled.
18:15:57 DEBUG opendrift:2118: ======================================================================
18:15:57 DEBUG opendrift:2129: 59.97885226596419 <- latitude -> 60.01970878895446
18:15:57 DEBUG opendrift:2129: 3.963080250971124 <- longitude -> 4.039595307039362
18:15:57 DEBUG opendrift:2129: -52.442220302016246 <- z -> 0.0
18:15:57 DEBUG opendrift:2130: ---------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:15:57 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:15:57 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:57 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:15:57 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:57 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:15:57 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:15:57 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:15:57 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:15:57 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:57 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:57 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:15:57 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:15:57 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:57 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:15:57 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:57 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:15:57 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:57 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:57 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:15:57 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:15:57 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:15:57 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:15:57 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:15:57 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:15:57 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:15:57 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:15:57 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:15:57 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:57 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:15:57 DEBUG opendrift:696: No elements hit coastline.
18:15:57 DEBUG opendrift:1707: No elements to deactivate
18:15:57 DEBUG opendrift:2166: Calling OpenOil.update()
18:15:57 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:15:57 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:15:57 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:15:57 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:15:57 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:15:57 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:15:57 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:57 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:15:57 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:15:57 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:57 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:15:57 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:15:57 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:15:57 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:15:57 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:15:57 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:15:57 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:15:57 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:15:57 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:15:57 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:15:57 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0011964156096968845 and 0.26977947087144943 m/s
18:15:57 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:15:57 DEBUG opendrift:2109: ======================================================================
18:15:57 INFO opendrift:2110: 2025-11-11 02:15:52.454745 - step 9 of 72 - 1000 active elements (0 deactivated)
18:15:57 DEBUG opendrift:2116: 0 elements scheduled.
18:15:57 DEBUG opendrift:2118: ======================================================================
18:15:57 DEBUG opendrift:2129: 59.97779113982597 <- latitude -> 60.023638293413356
18:15:57 DEBUG opendrift:2129: 3.96162242565388 <- longitude -> 4.041868004431596
18:15:57 DEBUG opendrift:2129: -52.43935828453126 <- z -> 0.0
18:15:57 DEBUG opendrift:2130: ---------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:15:57 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:15:57 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:57 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:15:57 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:57 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:15:57 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:15:57 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:15:57 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:15:57 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:57 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:57 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:15:57 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:15:57 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:57 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:15:57 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:57 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:15:57 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:57 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:57 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:15:57 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:15:57 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:15:57 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:15:57 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:15:57 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:15:57 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:15:57 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:15:57 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:15:57 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:57 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:15:57 DEBUG opendrift:696: No elements hit coastline.
18:15:57 DEBUG opendrift:1707: No elements to deactivate
18:15:57 DEBUG opendrift:2166: Calling OpenOil.update()
18:15:57 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:15:57 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:15:57 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:15:57 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:15:57 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:15:57 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:15:57 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:57 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:15:57 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:15:57 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:57 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:15:57 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:15:57 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:15:57 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:15:57 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:15:57 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:15:57 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:15:57 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:15:57 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:15:57 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:15:57 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.004006411553231905 and 0.3276092985581127 m/s
18:15:57 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:15:57 DEBUG opendrift:2109: ======================================================================
18:15:57 INFO opendrift:2110: 2025-11-11 03:15:52.454745 - step 10 of 72 - 1000 active elements (0 deactivated)
18:15:57 DEBUG opendrift:2116: 0 elements scheduled.
18:15:57 DEBUG opendrift:2118: ======================================================================
18:15:57 DEBUG opendrift:2129: 59.97645366690814 <- latitude -> 60.0265932910081
18:15:57 DEBUG opendrift:2129: 3.9568866059395083 <- longitude -> 4.048665160174355
18:15:57 DEBUG opendrift:2129: -52.37346668006803 <- z -> 0.0
18:15:57 DEBUG opendrift:2130: ---------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:15:57 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:15:57 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:57 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:15:57 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:57 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:15:57 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:15:57 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:15:57 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:15:57 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:57 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:57 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:15:57 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:15:57 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:57 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:15:57 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:57 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:15:57 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:57 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:57 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:15:57 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:15:57 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:15:57 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:15:57 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:15:57 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:15:57 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:15:57 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:15:57 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:15:57 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:57 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:15:57 DEBUG opendrift:696: No elements hit coastline.
18:15:57 DEBUG opendrift:1707: No elements to deactivate
18:15:57 DEBUG opendrift:2166: Calling OpenOil.update()
18:15:57 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:15:57 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:15:57 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:15:57 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:15:57 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:15:57 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:15:57 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:57 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:15:57 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:15:57 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:57 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:15:57 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:15:57 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:15:57 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:15:57 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:15:57 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:15:57 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:15:57 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:15:57 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:15:57 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:15:57 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0019485125713325482 and 0.2860428608074356 m/s
18:15:57 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:15:57 DEBUG opendrift:2109: ======================================================================
18:15:57 INFO opendrift:2110: 2025-11-11 04:15:52.454745 - step 11 of 72 - 1000 active elements (0 deactivated)
18:15:57 DEBUG opendrift:2116: 0 elements scheduled.
18:15:57 DEBUG opendrift:2118: ======================================================================
18:15:57 DEBUG opendrift:2129: 59.97544309889227 <- latitude -> 60.02583876391961
18:15:57 DEBUG opendrift:2129: 3.9556931052810502 <- longitude -> 4.049234918758786
18:15:57 DEBUG opendrift:2129: -52.739235905328904 <- z -> 0.0
18:15:57 DEBUG opendrift:2130: ---------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:15:57 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:15:57 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:57 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:15:57 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:57 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:15:57 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:15:57 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:15:57 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:15:57 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:57 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:57 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:15:57 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:15:57 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:57 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:15:57 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:57 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:15:57 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:57 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:57 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:15:57 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:15:57 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:15:57 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:15:57 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:15:57 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:15:57 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:15:57 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:15:57 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:15:57 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:15:57 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:15:57 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:57 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:15:57 DEBUG opendrift:696: No elements hit coastline.
18:15:57 DEBUG opendrift:1707: No elements to deactivate
18:15:57 DEBUG opendrift:2166: Calling OpenOil.update()
18:15:57 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:15:57 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:15:57 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:15:57 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:15:57 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:15:57 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:15:57 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:57 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:15:57 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:15:57 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:57 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:15:57 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:15:57 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:15:57 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:15:57 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:15:57 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:15:57 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:15:57 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:15:58 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:15:58 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:15:58 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0020135251405121496 and 0.3089059368070698 m/s
18:15:58 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:15:58 DEBUG opendrift:2109: ======================================================================
18:15:58 INFO opendrift:2110: 2025-11-11 05:15:52.454745 - step 12 of 72 - 1000 active elements (0 deactivated)
18:15:58 DEBUG opendrift:2116: 0 elements scheduled.
18:15:58 DEBUG opendrift:2118: ======================================================================
18:15:58 DEBUG opendrift:2129: 59.97478695596436 <- latitude -> 60.02603812606495
18:15:58 DEBUG opendrift:2129: 3.947585573940287 <- longitude -> 4.047664871283525
18:15:58 DEBUG opendrift:2129: -52.57059540085608 <- z -> 0.0
18:15:58 DEBUG opendrift:2130: ---------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:15:58 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:15:58 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:58 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:15:58 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:58 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:15:58 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:15:58 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:15:58 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:15:58 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:58 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:58 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:15:58 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:15:58 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:58 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:15:58 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:58 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:15:58 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:58 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:58 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:15:58 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:15:58 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:15:58 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:15:58 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:15:58 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:15:58 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:15:58 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:15:58 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:15:58 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:58 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:15:58 DEBUG opendrift:696: No elements hit coastline.
18:15:58 DEBUG opendrift:1707: No elements to deactivate
18:15:58 DEBUG opendrift:2166: Calling OpenOil.update()
18:15:58 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:15:58 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:15:58 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:15:58 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:15:58 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:15:58 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:15:58 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:58 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:15:58 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:15:58 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:58 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:15:58 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:15:58 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:15:58 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:15:58 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:15:58 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:15:58 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:15:58 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:15:58 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:15:58 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:15:58 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0012765399476683675 and 0.30559783681668884 m/s
18:15:58 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:15:58 DEBUG opendrift:2109: ======================================================================
18:15:58 INFO opendrift:2110: 2025-11-11 06:15:52.454745 - step 13 of 72 - 1000 active elements (0 deactivated)
18:15:58 DEBUG opendrift:2116: 0 elements scheduled.
18:15:58 DEBUG opendrift:2118: ======================================================================
18:15:58 DEBUG opendrift:2129: 59.975179963391426 <- latitude -> 60.02946101192493
18:15:58 DEBUG opendrift:2129: 3.9420558179709957 <- longitude -> 4.0479869715625165
18:15:58 DEBUG opendrift:2129: -52.27159809115201 <- z -> 0.0
18:15:58 DEBUG opendrift:2130: ---------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:15:58 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:15:58 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:58 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:15:58 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:58 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:15:58 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:15:58 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:15:58 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:15:58 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:58 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:58 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:15:58 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:15:58 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:58 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:15:58 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:58 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:15:58 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:58 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:58 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:15:58 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:15:58 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:15:58 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:15:58 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:15:58 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:15:58 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:15:58 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:15:58 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:15:58 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:58 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:15:58 DEBUG opendrift:696: No elements hit coastline.
18:15:58 DEBUG opendrift:1707: No elements to deactivate
18:15:58 DEBUG opendrift:2166: Calling OpenOil.update()
18:15:58 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:15:58 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:15:58 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:15:58 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:15:58 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:15:58 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:15:58 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:58 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:15:58 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:15:58 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:58 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:15:58 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:15:58 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:15:58 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:15:58 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:15:58 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:15:58 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:15:58 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:15:58 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:15:58 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:15:58 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.002059811685033994 and 0.2982353539985148 m/s
18:15:58 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:15:58 DEBUG opendrift:2109: ======================================================================
18:15:58 INFO opendrift:2110: 2025-11-11 07:15:52.454745 - step 14 of 72 - 1000 active elements (0 deactivated)
18:15:58 DEBUG opendrift:2116: 0 elements scheduled.
18:15:58 DEBUG opendrift:2118: ======================================================================
18:15:58 DEBUG opendrift:2129: 59.972607663708374 <- latitude -> 60.02910194207657
18:15:58 DEBUG opendrift:2129: 3.9454706646494153 <- longitude -> 4.0517186789996895
18:15:58 DEBUG opendrift:2129: -52.583567846979335 <- z -> 0.0
18:15:58 DEBUG opendrift:2130: ---------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:15:58 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:15:58 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:58 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:15:58 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:58 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:15:58 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:15:58 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:15:58 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:15:58 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:58 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:58 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:15:58 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:15:58 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:58 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:15:58 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:58 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:15:58 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:58 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:58 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:15:58 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:15:58 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:15:58 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:15:58 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:15:58 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:15:58 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:15:58 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:15:58 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:15:58 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:58 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:15:58 DEBUG opendrift:696: No elements hit coastline.
18:15:58 DEBUG opendrift:1707: No elements to deactivate
18:15:58 DEBUG opendrift:2166: Calling OpenOil.update()
18:15:58 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:15:58 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:15:58 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:15:58 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:15:58 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:15:58 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:15:58 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:58 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:15:58 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:15:58 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:58 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:15:58 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:15:58 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:15:58 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:15:58 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:15:58 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:15:58 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:15:58 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:15:58 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:15:58 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:15:58 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.005937776690819647 and 0.257183021365017 m/s
18:15:58 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:15:58 DEBUG opendrift:2109: ======================================================================
18:15:58 INFO opendrift:2110: 2025-11-11 08:15:52.454745 - step 15 of 72 - 1000 active elements (0 deactivated)
18:15:58 DEBUG opendrift:2116: 0 elements scheduled.
18:15:58 DEBUG opendrift:2118: ======================================================================
18:15:58 DEBUG opendrift:2129: 59.96939250992013 <- latitude -> 60.03234450871622
18:15:58 DEBUG opendrift:2129: 3.9354157078612526 <- longitude -> 4.052607292686075
18:15:58 DEBUG opendrift:2129: -52.825560779586084 <- z -> 0.0
18:15:58 DEBUG opendrift:2130: ---------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:15:58 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:15:58 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:58 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:15:58 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:58 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:15:58 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:15:58 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:15:58 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:15:58 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:58 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:58 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:15:58 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:15:58 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:58 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:15:58 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:58 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:15:58 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:58 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:58 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:15:58 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:15:58 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:15:58 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:15:58 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:15:58 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:15:58 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:15:58 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:15:58 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:15:58 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:58 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:15:58 DEBUG opendrift:696: No elements hit coastline.
18:15:58 DEBUG opendrift:1707: No elements to deactivate
18:15:58 DEBUG opendrift:2166: Calling OpenOil.update()
18:15:58 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:15:58 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:15:58 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:15:58 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:15:58 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:15:58 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:15:58 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:58 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:15:58 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:15:58 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:58 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:15:58 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:15:58 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:15:58 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:15:58 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:15:58 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:15:58 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:15:58 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:15:58 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:15:58 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:15:58 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0015273460078467074 and 0.27244834032549003 m/s
18:15:58 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:15:58 DEBUG opendrift:2109: ======================================================================
18:15:58 INFO opendrift:2110: 2025-11-11 09:15:52.454745 - step 16 of 72 - 1000 active elements (0 deactivated)
18:15:58 DEBUG opendrift:2116: 0 elements scheduled.
18:15:58 DEBUG opendrift:2118: ======================================================================
18:15:58 DEBUG opendrift:2129: 59.970725069654705 <- latitude -> 60.03325698026819
18:15:58 DEBUG opendrift:2129: 3.9300446658540045 <- longitude -> 4.054049981754458
18:15:58 DEBUG opendrift:2129: -53.01267150779023 <- z -> 0.0
18:15:58 DEBUG opendrift:2130: ---------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:15:58 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:15:58 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:58 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:15:58 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:58 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:15:58 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:15:58 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:15:58 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:15:58 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:58 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:58 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:15:58 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:15:58 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:58 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:15:58 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:58 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:15:58 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:58 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:58 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:15:58 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:15:58 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:15:58 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:15:58 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:15:58 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:15:58 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:15:58 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:15:58 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:15:58 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:58 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:15:58 DEBUG opendrift:696: No elements hit coastline.
18:15:58 DEBUG opendrift:1707: No elements to deactivate
18:15:58 DEBUG opendrift:2166: Calling OpenOil.update()
18:15:58 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:15:58 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:15:58 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:15:58 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:15:58 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:15:58 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:15:58 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:58 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:15:58 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:15:58 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:58 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:15:58 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:15:58 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:15:58 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:15:58 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:15:58 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:15:58 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:15:58 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:15:58 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:15:58 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:15:58 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.004114681201002062 and 0.33516775031858936 m/s
18:15:58 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:15:58 DEBUG opendrift:2109: ======================================================================
18:15:58 INFO opendrift:2110: 2025-11-11 10:15:52.454745 - step 17 of 72 - 1000 active elements (0 deactivated)
18:15:58 DEBUG opendrift:2116: 0 elements scheduled.
18:15:58 DEBUG opendrift:2118: ======================================================================
18:15:58 DEBUG opendrift:2129: 59.970155432489335 <- latitude -> 60.03106824001439
18:15:58 DEBUG opendrift:2129: 3.92745764889822 <- longitude -> 4.055552672612289
18:15:58 DEBUG opendrift:2129: -53.272470953345255 <- z -> 0.0
18:15:58 DEBUG opendrift:2130: ---------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:15:58 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:15:58 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:58 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:15:58 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:58 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:15:58 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:15:58 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:15:58 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:15:58 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:58 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:58 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:15:58 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:15:58 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:58 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:15:58 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:58 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:15:58 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:58 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:58 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:15:58 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:15:58 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:15:58 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:15:58 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:15:58 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:15:58 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:15:58 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:15:58 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:15:58 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:58 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:15:58 DEBUG opendrift:696: No elements hit coastline.
18:15:58 DEBUG opendrift:1707: No elements to deactivate
18:15:58 DEBUG opendrift:2166: Calling OpenOil.update()
18:15:58 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:15:58 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:15:58 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:15:58 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:15:58 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:15:58 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:15:58 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:58 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:15:58 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:15:58 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:58 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:15:58 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:15:58 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:15:58 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:15:58 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:15:58 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:15:58 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:15:58 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:15:58 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:15:58 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:15:58 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0011444925579211515 and 0.2956755822676069 m/s
18:15:58 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:15:58 DEBUG opendrift:2109: ======================================================================
18:15:58 INFO opendrift:2110: 2025-11-11 11:15:52.454745 - step 18 of 72 - 1000 active elements (0 deactivated)
18:15:58 DEBUG opendrift:2116: 0 elements scheduled.
18:15:58 DEBUG opendrift:2118: ======================================================================
18:15:58 DEBUG opendrift:2129: 59.96793764654285 <- latitude -> 60.034098714178825
18:15:58 DEBUG opendrift:2129: 3.9363936425503 <- longitude -> 4.064747047667299
18:15:58 DEBUG opendrift:2129: -52.899755583201134 <- z -> 0.0
18:15:58 DEBUG opendrift:2130: ---------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:15:58 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:15:58 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:58 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:15:58 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:58 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:15:58 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:15:58 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:15:58 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:15:58 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:58 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:58 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:15:58 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:15:58 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:58 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:15:58 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:58 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:15:58 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:58 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:58 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:15:58 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:15:58 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:15:58 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:15:58 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:15:58 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:15:58 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:15:58 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:15:58 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:15:58 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:58 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:15:58 DEBUG opendrift:696: No elements hit coastline.
18:15:58 DEBUG opendrift:1707: No elements to deactivate
18:15:58 DEBUG opendrift:2166: Calling OpenOil.update()
18:15:58 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:15:58 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:15:58 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:15:58 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:15:58 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:15:58 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:15:58 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:58 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:15:58 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:15:58 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:58 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:15:58 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:15:58 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:15:58 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:15:58 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:15:58 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:15:58 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:15:58 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:15:58 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:15:58 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:15:58 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.006649856567931005 and 0.3229478526317954 m/s
18:15:58 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:15:58 DEBUG opendrift:2109: ======================================================================
18:15:58 INFO opendrift:2110: 2025-11-11 12:15:52.454745 - step 19 of 72 - 1000 active elements (0 deactivated)
18:15:58 DEBUG opendrift:2116: 0 elements scheduled.
18:15:58 DEBUG opendrift:2118: ======================================================================
18:15:58 DEBUG opendrift:2129: 59.9672947453065 <- latitude -> 60.038931846150795
18:15:58 DEBUG opendrift:2129: 3.9285066458051285 <- longitude -> 4.069856995597465
18:15:58 DEBUG opendrift:2129: -53.04017757995296 <- z -> 0.0
18:15:58 DEBUG opendrift:2130: ---------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:15:58 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:15:58 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:58 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:15:58 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:58 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:15:58 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:15:58 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:15:58 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:15:58 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:58 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:58 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:15:58 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:15:58 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:58 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:15:58 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:58 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:15:58 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:58 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:58 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:15:58 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:15:58 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:15:58 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:15:58 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:15:58 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:15:58 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:15:58 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:15:58 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:15:58 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:58 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:15:58 DEBUG opendrift:696: No elements hit coastline.
18:15:58 DEBUG opendrift:1707: No elements to deactivate
18:15:58 DEBUG opendrift:2166: Calling OpenOil.update()
18:15:58 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:15:58 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:15:58 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:15:58 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:15:58 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:15:58 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:15:58 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:58 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:15:58 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:15:58 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:58 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:15:58 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:15:58 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:15:58 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:15:58 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:15:58 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:15:58 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:15:58 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:15:58 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:15:58 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:15:58 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0035649539960791207 and 0.2595320001259624 m/s
18:15:58 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:15:58 DEBUG opendrift:2109: ======================================================================
18:15:58 INFO opendrift:2110: 2025-11-11 13:15:52.454745 - step 20 of 72 - 1000 active elements (0 deactivated)
18:15:58 DEBUG opendrift:2116: 0 elements scheduled.
18:15:58 DEBUG opendrift:2118: ======================================================================
18:15:58 DEBUG opendrift:2129: 59.966957770752174 <- latitude -> 60.03907497590925
18:15:58 DEBUG opendrift:2129: 3.9279796752273812 <- longitude -> 4.0721984230617245
18:15:58 DEBUG opendrift:2129: -53.3265079005366 <- z -> 0.0
18:15:58 DEBUG opendrift:2130: ---------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:15:58 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:15:58 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:58 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:15:58 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:58 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:15:58 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:15:58 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:15:58 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:15:58 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:58 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:58 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:15:58 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:15:58 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:58 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:15:58 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:58 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:15:58 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:58 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:58 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:15:58 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:15:58 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:15:58 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:15:58 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:15:58 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:15:58 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:15:58 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:15:58 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:15:58 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:15:58 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:15:58 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:58 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:15:58 DEBUG opendrift:696: No elements hit coastline.
18:15:58 DEBUG opendrift:1707: No elements to deactivate
18:15:58 DEBUG opendrift:2166: Calling OpenOil.update()
18:15:58 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:15:58 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:15:59 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:15:59 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:15:59 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:15:59 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:15:59 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:59 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:15:59 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:15:59 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:59 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:15:59 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:15:59 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:15:59 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:15:59 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:15:59 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:15:59 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:15:59 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:15:59 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:15:59 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:15:59 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.00236571905300566 and 0.2630974789449512 m/s
18:15:59 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:15:59 DEBUG opendrift:2109: ======================================================================
18:15:59 INFO opendrift:2110: 2025-11-11 14:15:52.454745 - step 21 of 72 - 1000 active elements (0 deactivated)
18:15:59 DEBUG opendrift:2116: 0 elements scheduled.
18:15:59 DEBUG opendrift:2118: ======================================================================
18:15:59 DEBUG opendrift:2129: 59.96613553776912 <- latitude -> 60.03724203472609
18:15:59 DEBUG opendrift:2129: 3.9279848392960113 <- longitude -> 4.079318653885978
18:15:59 DEBUG opendrift:2129: -53.361635210246504 <- z -> 0.0
18:15:59 DEBUG opendrift:2130: ---------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:15:59 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:15:59 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:59 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:15:59 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:59 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:15:59 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:15:59 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:15:59 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:15:59 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:59 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:59 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:15:59 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:15:59 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:59 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:15:59 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:59 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:15:59 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:59 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:59 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:15:59 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:15:59 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:15:59 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:15:59 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:15:59 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:15:59 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:15:59 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:15:59 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:15:59 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:59 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:15:59 DEBUG opendrift:696: No elements hit coastline.
18:15:59 DEBUG opendrift:1707: No elements to deactivate
18:15:59 DEBUG opendrift:2166: Calling OpenOil.update()
18:15:59 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:15:59 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:15:59 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:15:59 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:15:59 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:15:59 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:15:59 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:59 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:15:59 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:15:59 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:59 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:15:59 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:15:59 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:15:59 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:15:59 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:15:59 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:15:59 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:15:59 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:15:59 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:15:59 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:15:59 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0012743434507719463 and 0.28589506826988104 m/s
18:15:59 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:15:59 DEBUG opendrift:2109: ======================================================================
18:15:59 INFO opendrift:2110: 2025-11-11 15:15:52.454745 - step 22 of 72 - 1000 active elements (0 deactivated)
18:15:59 DEBUG opendrift:2116: 0 elements scheduled.
18:15:59 DEBUG opendrift:2118: ======================================================================
18:15:59 DEBUG opendrift:2129: 59.96662699633764 <- latitude -> 60.03561396076451
18:15:59 DEBUG opendrift:2129: 3.9293737271763165 <- longitude -> 4.082307019210945
18:15:59 DEBUG opendrift:2129: -53.53051172610319 <- z -> 0.0
18:15:59 DEBUG opendrift:2130: ---------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:15:59 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:15:59 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:59 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:15:59 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:59 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:15:59 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:15:59 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:15:59 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:15:59 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:59 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:59 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:15:59 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:15:59 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:59 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:15:59 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:59 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:15:59 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:59 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:59 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:15:59 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:15:59 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:15:59 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:15:59 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:15:59 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:15:59 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:15:59 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:15:59 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:15:59 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:59 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:15:59 DEBUG opendrift:696: No elements hit coastline.
18:15:59 DEBUG opendrift:1707: No elements to deactivate
18:15:59 DEBUG opendrift:2166: Calling OpenOil.update()
18:15:59 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:15:59 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:15:59 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:15:59 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:15:59 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:15:59 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:15:59 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:59 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:15:59 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:15:59 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:59 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:15:59 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:15:59 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:15:59 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:15:59 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:15:59 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:15:59 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:15:59 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:15:59 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:15:59 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:15:59 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.003727588349098927 and 0.24873814711621203 m/s
18:15:59 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:15:59 DEBUG opendrift:2109: ======================================================================
18:15:59 INFO opendrift:2110: 2025-11-11 16:15:52.454745 - step 23 of 72 - 1000 active elements (0 deactivated)
18:15:59 DEBUG opendrift:2116: 0 elements scheduled.
18:15:59 DEBUG opendrift:2118: ======================================================================
18:15:59 DEBUG opendrift:2129: 59.96460253144224 <- latitude -> 60.03569950632237
18:15:59 DEBUG opendrift:2129: 3.92638366893988 <- longitude -> 4.078496511394471
18:15:59 DEBUG opendrift:2129: -53.76093859201668 <- z -> 0.0
18:15:59 DEBUG opendrift:2130: ---------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:15:59 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:15:59 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:59 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:15:59 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:59 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:15:59 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:15:59 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:15:59 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:15:59 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:59 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:59 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:15:59 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:15:59 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:59 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:15:59 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:59 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:15:59 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:59 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:59 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:15:59 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:15:59 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:15:59 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:15:59 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:15:59 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:15:59 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:15:59 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:15:59 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:15:59 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:59 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:15:59 DEBUG opendrift:696: No elements hit coastline.
18:15:59 DEBUG opendrift:1707: No elements to deactivate
18:15:59 DEBUG opendrift:2166: Calling OpenOil.update()
18:15:59 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:15:59 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:15:59 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:15:59 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:15:59 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:15:59 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:15:59 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:59 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:15:59 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:15:59 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:59 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:15:59 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:15:59 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:15:59 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:15:59 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:15:59 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:15:59 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:15:59 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:15:59 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:15:59 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:15:59 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0022342131125827696 and 0.3281579705479143 m/s
18:15:59 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:15:59 DEBUG opendrift:2109: ======================================================================
18:15:59 INFO opendrift:2110: 2025-11-11 17:15:52.454745 - step 24 of 72 - 1000 active elements (0 deactivated)
18:15:59 DEBUG opendrift:2116: 0 elements scheduled.
18:15:59 DEBUG opendrift:2118: ======================================================================
18:15:59 DEBUG opendrift:2129: 59.96381033716057 <- latitude -> 60.03410114183104
18:15:59 DEBUG opendrift:2129: 3.9298088266988453 <- longitude -> 4.08075049868825
18:15:59 DEBUG opendrift:2129: -54.1178551172757 <- z -> 0.0
18:15:59 DEBUG opendrift:2130: ---------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:15:59 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:15:59 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:59 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:15:59 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:59 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:15:59 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:15:59 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:15:59 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:15:59 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:59 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:59 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:15:59 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:15:59 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:59 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:15:59 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:59 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:15:59 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:59 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:59 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:15:59 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:15:59 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:15:59 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:15:59 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:15:59 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:15:59 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:15:59 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:15:59 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:15:59 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:59 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:15:59 DEBUG opendrift:696: No elements hit coastline.
18:15:59 DEBUG opendrift:1707: No elements to deactivate
18:15:59 DEBUG opendrift:2166: Calling OpenOil.update()
18:15:59 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:15:59 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:15:59 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:15:59 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:15:59 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:15:59 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:15:59 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:59 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:15:59 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:15:59 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:59 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:15:59 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:15:59 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:15:59 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:15:59 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:15:59 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:15:59 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:15:59 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:15:59 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:15:59 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:15:59 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.004604736111769178 and 0.25753481033194786 m/s
18:15:59 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:15:59 DEBUG opendrift:2109: ======================================================================
18:15:59 INFO opendrift:2110: 2025-11-11 18:15:52.454745 - step 25 of 72 - 1000 active elements (0 deactivated)
18:15:59 DEBUG opendrift:2116: 0 elements scheduled.
18:15:59 DEBUG opendrift:2118: ======================================================================
18:15:59 DEBUG opendrift:2129: 59.95989772653602 <- latitude -> 60.03611688886581
18:15:59 DEBUG opendrift:2129: 3.9262512642683625 <- longitude -> 4.0823431362347415
18:15:59 DEBUG opendrift:2129: -54.700899921319696 <- z -> 0.0
18:15:59 DEBUG opendrift:2130: ---------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:15:59 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:15:59 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:59 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:15:59 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:59 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:15:59 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:15:59 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:15:59 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:15:59 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:59 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:59 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:15:59 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:15:59 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:59 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:15:59 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:59 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:15:59 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:59 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:59 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:15:59 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:15:59 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:15:59 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:15:59 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:15:59 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:15:59 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:15:59 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:15:59 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:15:59 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:59 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:15:59 DEBUG opendrift:696: No elements hit coastline.
18:15:59 DEBUG opendrift:1707: No elements to deactivate
18:15:59 DEBUG opendrift:2166: Calling OpenOil.update()
18:15:59 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:15:59 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:15:59 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
18:15:59 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:15:59 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:15:59 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:15:59 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:15:59 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:59 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:15:59 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:15:59 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:59 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:15:59 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:15:59 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:15:59 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:15:59 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:15:59 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:15:59 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:15:59 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:15:59 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:15:59 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:15:59 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.003488462737987466 and 0.2305449379154643 m/s
18:15:59 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:15:59 DEBUG opendrift:2109: ======================================================================
18:15:59 INFO opendrift:2110: 2025-11-11 19:15:52.454745 - step 26 of 72 - 1000 active elements (0 deactivated)
18:15:59 DEBUG opendrift:2116: 0 elements scheduled.
18:15:59 DEBUG opendrift:2118: ======================================================================
18:15:59 DEBUG opendrift:2129: 59.962031422365655 <- latitude -> 60.03438190231286
18:15:59 DEBUG opendrift:2129: 3.929111574398972 <- longitude -> 4.08844047824741
18:15:59 DEBUG opendrift:2129: -54.66348835964327 <- z -> 0.0
18:15:59 DEBUG opendrift:2130: ---------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:15:59 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:15:59 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:59 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:15:59 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:59 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:15:59 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:15:59 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:15:59 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:15:59 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:59 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:59 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:15:59 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:15:59 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:59 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:15:59 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:59 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:15:59 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:59 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:59 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:15:59 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:15:59 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:15:59 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:15:59 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:15:59 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:15:59 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:15:59 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:15:59 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:15:59 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:59 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:15:59 DEBUG opendrift:696: No elements hit coastline.
18:15:59 DEBUG opendrift:1707: No elements to deactivate
18:15:59 DEBUG opendrift:2166: Calling OpenOil.update()
18:15:59 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:15:59 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:15:59 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
18:15:59 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:15:59 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:15:59 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:15:59 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:15:59 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:59 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:15:59 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:15:59 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:59 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:15:59 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:15:59 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:15:59 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:15:59 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:15:59 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:15:59 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:15:59 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:15:59 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:15:59 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:15:59 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0020961820415778525 and 0.34616158110438694 m/s
18:15:59 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:15:59 DEBUG opendrift:2109: ======================================================================
18:15:59 INFO opendrift:2110: 2025-11-11 20:15:52.454745 - step 27 of 72 - 1000 active elements (0 deactivated)
18:15:59 DEBUG opendrift:2116: 0 elements scheduled.
18:15:59 DEBUG opendrift:2118: ======================================================================
18:15:59 DEBUG opendrift:2129: 59.961386335310834 <- latitude -> 60.03407098898637
18:15:59 DEBUG opendrift:2129: 3.9281375605509377 <- longitude -> 4.094337845668888
18:15:59 DEBUG opendrift:2129: -54.81680482210812 <- z -> 0.0
18:15:59 DEBUG opendrift:2130: ---------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:15:59 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:15:59 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:59 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:15:59 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:59 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:15:59 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:15:59 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:15:59 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:15:59 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:59 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:59 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:15:59 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:15:59 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:59 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:15:59 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:59 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:15:59 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:59 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:59 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:15:59 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:15:59 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:15:59 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:15:59 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:15:59 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:15:59 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:15:59 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:15:59 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:15:59 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:59 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:15:59 DEBUG opendrift:696: No elements hit coastline.
18:15:59 DEBUG opendrift:1707: No elements to deactivate
18:15:59 DEBUG opendrift:2166: Calling OpenOil.update()
18:15:59 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:15:59 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:15:59 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
18:15:59 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:15:59 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:15:59 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:15:59 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:15:59 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:59 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:15:59 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:15:59 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:59 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:15:59 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:15:59 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:15:59 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:15:59 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:15:59 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:15:59 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:15:59 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:15:59 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:15:59 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:15:59 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0030229535139614993 and 0.2944213874904817 m/s
18:15:59 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:15:59 DEBUG opendrift:2109: ======================================================================
18:15:59 INFO opendrift:2110: 2025-11-11 21:15:52.454745 - step 28 of 72 - 1000 active elements (0 deactivated)
18:15:59 DEBUG opendrift:2116: 0 elements scheduled.
18:15:59 DEBUG opendrift:2118: ======================================================================
18:15:59 DEBUG opendrift:2129: 59.960056820518 <- latitude -> 60.03524187155291
18:15:59 DEBUG opendrift:2129: 3.92300702488026 <- longitude -> 4.090091246809038
18:15:59 DEBUG opendrift:2129: -55.100302365783726 <- z -> 0.0
18:15:59 DEBUG opendrift:2130: ---------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:15:59 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:15:59 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:59 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:15:59 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:59 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:15:59 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:15:59 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:15:59 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:15:59 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:59 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:59 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:15:59 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:15:59 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:59 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:15:59 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:59 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:15:59 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:59 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:59 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:15:59 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:15:59 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:15:59 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:15:59 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:15:59 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:15:59 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:15:59 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:15:59 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:15:59 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:59 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:15:59 DEBUG opendrift:696: No elements hit coastline.
18:15:59 DEBUG opendrift:1707: No elements to deactivate
18:15:59 DEBUG opendrift:2166: Calling OpenOil.update()
18:15:59 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:15:59 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:15:59 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
18:15:59 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:15:59 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:15:59 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:15:59 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:15:59 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:59 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:15:59 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:15:59 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:59 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:15:59 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:15:59 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:15:59 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:15:59 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:15:59 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:15:59 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:15:59 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:15:59 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:15:59 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:15:59 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.003842990509628418 and 0.2616604311767797 m/s
18:15:59 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:15:59 DEBUG opendrift:2109: ======================================================================
18:15:59 INFO opendrift:2110: 2025-11-11 22:15:52.454745 - step 29 of 72 - 1000 active elements (0 deactivated)
18:15:59 DEBUG opendrift:2116: 0 elements scheduled.
18:15:59 DEBUG opendrift:2118: ======================================================================
18:15:59 DEBUG opendrift:2129: 59.95740804758019 <- latitude -> 60.03539962168126
18:15:59 DEBUG opendrift:2129: 3.9183722797729543 <- longitude -> 4.088506944840029
18:15:59 DEBUG opendrift:2129: -55.6833239553789 <- z -> 0.0
18:15:59 DEBUG opendrift:2130: ---------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:15:59 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:15:59 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:59 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:15:59 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:59 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:15:59 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:15:59 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:15:59 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:15:59 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:59 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:59 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:15:59 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:15:59 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:59 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:15:59 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:59 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:15:59 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:59 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:59 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:15:59 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:15:59 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:15:59 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:15:59 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:15:59 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:15:59 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:15:59 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:15:59 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:15:59 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:59 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:15:59 DEBUG opendrift:696: No elements hit coastline.
18:15:59 DEBUG opendrift:1707: No elements to deactivate
18:15:59 DEBUG opendrift:2166: Calling OpenOil.update()
18:15:59 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:15:59 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:15:59 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
18:15:59 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:15:59 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:15:59 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:15:59 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:15:59 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:59 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:15:59 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:15:59 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:59 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:15:59 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:15:59 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:15:59 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:15:59 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:15:59 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:15:59 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:15:59 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:15:59 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:15:59 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:15:59 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0029360090514733775 and 0.3095914832428939 m/s
18:15:59 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:15:59 DEBUG opendrift:2109: ======================================================================
18:15:59 INFO opendrift:2110: 2025-11-11 23:15:52.454745 - step 30 of 72 - 1000 active elements (0 deactivated)
18:15:59 DEBUG opendrift:2116: 0 elements scheduled.
18:15:59 DEBUG opendrift:2118: ======================================================================
18:15:59 DEBUG opendrift:2129: 59.95525223588288 <- latitude -> 60.03750564643465
18:15:59 DEBUG opendrift:2129: 3.919218151405376 <- longitude -> 4.087904210061124
18:15:59 DEBUG opendrift:2129: -55.1960905985658 <- z -> 0.0
18:15:59 DEBUG opendrift:2130: ---------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:15:59 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:15:59 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:59 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:15:59 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:59 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:15:59 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:15:59 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:15:59 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:15:59 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:59 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:59 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:15:59 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:15:59 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:15:59 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:15:59 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:15:59 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:15:59 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:15:59 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:15:59 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:15:59 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:15:59 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:15:59 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:15:59 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:15:59 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:15:59 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:15:59 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:15:59 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:15:59 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:15:59 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:15:59 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:15:59 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:15:59 DEBUG opendrift:696: No elements hit coastline.
18:16:00 DEBUG opendrift:1707: No elements to deactivate
18:16:00 DEBUG opendrift:2166: Calling OpenOil.update()
18:16:00 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:16:00 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:16:00 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
18:16:00 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:16:00 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:16:00 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:16:00 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:00 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:00 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:16:00 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:00 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:00 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:16:00 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:16:00 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:16:00 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:16:00 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:16:00 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:16:00 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:16:00 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:16:00 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:16:00 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:16:00 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.004151034838430559 and 0.28651972101405737 m/s
18:16:00 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:16:00 DEBUG opendrift:2109: ======================================================================
18:16:00 INFO opendrift:2110: 2025-11-12 00:15:52.454745 - step 31 of 72 - 1000 active elements (0 deactivated)
18:16:00 DEBUG opendrift:2116: 0 elements scheduled.
18:16:00 DEBUG opendrift:2118: ======================================================================
18:16:00 DEBUG opendrift:2129: 59.950471399768794 <- latitude -> 60.036961146801815
18:16:00 DEBUG opendrift:2129: 3.920428492873542 <- longitude -> 4.086329553300663
18:16:00 DEBUG opendrift:2129: -55.068766597345174 <- z -> 0.0
18:16:00 DEBUG opendrift:2130: ---------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:16:00 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:16:00 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:00 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:16:00 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:00 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:16:00 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:16:00 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:16:00 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:16:00 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:00 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:00 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:16:00 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:16:00 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:00 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:16:00 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:00 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:16:00 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:00 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:00 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:16:00 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:16:00 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:16:00 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:16:00 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:16:00 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:16:00 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:16:00 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:16:00 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:16:00 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:00 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:16:00 DEBUG opendrift:696: No elements hit coastline.
18:16:00 DEBUG opendrift:1707: No elements to deactivate
18:16:00 DEBUG opendrift:2166: Calling OpenOil.update()
18:16:00 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:16:00 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:16:00 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
18:16:00 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:16:00 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:16:00 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:16:00 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:00 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:00 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:16:00 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:00 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:00 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:16:00 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:16:00 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:16:00 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:16:00 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:16:00 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:16:00 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:16:00 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:16:00 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:16:00 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:16:00 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.007153335429492487 and 0.30057830421343756 m/s
18:16:00 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:16:00 DEBUG opendrift:2109: ======================================================================
18:16:00 INFO opendrift:2110: 2025-11-12 01:15:52.454745 - step 32 of 72 - 1000 active elements (0 deactivated)
18:16:00 DEBUG opendrift:2116: 0 elements scheduled.
18:16:00 DEBUG opendrift:2118: ======================================================================
18:16:00 DEBUG opendrift:2129: 59.952218306194624 <- latitude -> 60.03812913679167
18:16:00 DEBUG opendrift:2129: 3.9162118007271247 <- longitude -> 4.094181329906318
18:16:00 DEBUG opendrift:2129: -55.421502579988264 <- z -> 0.0
18:16:00 DEBUG opendrift:2130: ---------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:16:00 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:16:00 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:00 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:16:00 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:00 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:16:00 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:16:00 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:16:00 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:16:00 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:00 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:00 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:16:00 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:16:00 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:00 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:16:00 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:00 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:16:00 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:00 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:00 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:16:00 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:16:00 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:16:00 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:16:00 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:16:00 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:16:00 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:16:00 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:16:00 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:16:00 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:00 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:16:00 DEBUG opendrift:696: No elements hit coastline.
18:16:00 DEBUG opendrift:1707: No elements to deactivate
18:16:00 DEBUG opendrift:2166: Calling OpenOil.update()
18:16:00 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:16:00 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:16:00 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
18:16:00 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:16:00 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:16:00 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:16:00 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:00 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:00 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:16:00 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:00 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:00 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:16:00 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:16:00 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:16:00 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:16:00 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:16:00 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:16:00 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:16:00 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:16:00 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:16:00 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:16:00 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0018532850472968458 and 0.26099714995507445 m/s
18:16:00 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:16:00 DEBUG opendrift:2109: ======================================================================
18:16:00 INFO opendrift:2110: 2025-11-12 02:15:52.454745 - step 33 of 72 - 1000 active elements (0 deactivated)
18:16:00 DEBUG opendrift:2116: 0 elements scheduled.
18:16:00 DEBUG opendrift:2118: ======================================================================
18:16:00 DEBUG opendrift:2129: 59.950083614633215 <- latitude -> 60.04142914865003
18:16:00 DEBUG opendrift:2129: 3.9130276022586887 <- longitude -> 4.10430221838471
18:16:00 DEBUG opendrift:2129: -55.535435871336034 <- z -> 0.0
18:16:00 DEBUG opendrift:2130: ---------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:16:00 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:16:00 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:00 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:16:00 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:00 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:16:00 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:16:00 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:16:00 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:16:00 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:00 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:00 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:16:00 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:16:00 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:00 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:16:00 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:00 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:16:00 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:00 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:00 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:16:00 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:16:00 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:16:00 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:16:00 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:16:00 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:16:00 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:16:00 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:16:00 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:16:00 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:00 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:16:00 DEBUG opendrift:696: No elements hit coastline.
18:16:00 DEBUG opendrift:1707: No elements to deactivate
18:16:00 DEBUG opendrift:2166: Calling OpenOil.update()
18:16:00 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:16:00 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:16:00 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
18:16:00 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:16:00 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:16:00 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:16:00 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:00 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:00 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:16:00 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:00 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:00 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:16:00 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:16:00 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:16:00 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:16:00 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:16:00 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:16:00 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:16:00 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:16:00 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:16:00 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:16:00 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.002727888887553324 and 0.3174852355538081 m/s
18:16:00 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:16:00 DEBUG opendrift:2109: ======================================================================
18:16:00 INFO opendrift:2110: 2025-11-12 03:15:52.454745 - step 34 of 72 - 1000 active elements (0 deactivated)
18:16:00 DEBUG opendrift:2116: 0 elements scheduled.
18:16:00 DEBUG opendrift:2118: ======================================================================
18:16:00 DEBUG opendrift:2129: 59.948130373473504 <- latitude -> 60.04110296195665
18:16:00 DEBUG opendrift:2129: 3.9086170538113074 <- longitude -> 4.097883842996578
18:16:00 DEBUG opendrift:2129: -55.506615609738894 <- z -> 0.0
18:16:00 DEBUG opendrift:2130: ---------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:16:00 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:16:00 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:00 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:16:00 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:00 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:16:00 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:16:00 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:16:00 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:16:00 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:00 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:00 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:16:00 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:16:00 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:00 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:16:00 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:00 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:16:00 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:00 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:00 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:16:00 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:16:00 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:16:00 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:16:00 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:16:00 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:16:00 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:16:00 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:16:00 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:16:00 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:00 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:16:00 DEBUG opendrift:696: No elements hit coastline.
18:16:00 DEBUG opendrift:1707: No elements to deactivate
18:16:00 DEBUG opendrift:2166: Calling OpenOil.update()
18:16:00 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:16:00 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:16:00 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
18:16:00 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:16:00 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:16:00 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:16:00 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:00 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:00 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:16:00 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:00 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:00 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:16:00 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:16:00 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:16:00 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:16:00 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:16:00 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:16:00 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:16:00 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:16:00 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:16:00 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:16:00 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.00256401965931058 and 0.26326231414048723 m/s
18:16:00 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:16:00 DEBUG opendrift:2109: ======================================================================
18:16:00 INFO opendrift:2110: 2025-11-12 04:15:52.454745 - step 35 of 72 - 1000 active elements (0 deactivated)
18:16:00 DEBUG opendrift:2116: 0 elements scheduled.
18:16:00 DEBUG opendrift:2118: ======================================================================
18:16:00 DEBUG opendrift:2129: 59.95253465166398 <- latitude -> 60.0408853122365
18:16:00 DEBUG opendrift:2129: 3.9144989014047606 <- longitude -> 4.0967173945021695
18:16:00 DEBUG opendrift:2129: -55.50180724518627 <- z -> 0.0
18:16:00 DEBUG opendrift:2130: ---------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:16:00 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:16:00 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:00 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:16:00 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:00 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:16:00 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:16:00 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:16:00 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:16:00 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:00 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:00 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:16:00 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:16:00 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:00 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:16:00 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:00 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:16:00 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:00 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:00 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:16:00 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:16:00 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:16:00 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:16:00 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:16:00 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:16:00 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:16:00 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:16:00 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:16:00 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:00 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:16:00 DEBUG opendrift:696: No elements hit coastline.
18:16:00 DEBUG opendrift:1707: No elements to deactivate
18:16:00 DEBUG opendrift:2166: Calling OpenOil.update()
18:16:00 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:16:00 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:16:00 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
18:16:00 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:16:00 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:16:00 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:16:00 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:00 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:00 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:16:00 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:00 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:00 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:16:00 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:16:00 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:16:00 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:16:00 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:16:00 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:16:00 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:16:00 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:16:00 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:16:00 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:16:00 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0028884253438362655 and 0.3715165954838363 m/s
18:16:00 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:16:00 DEBUG opendrift:2109: ======================================================================
18:16:00 INFO opendrift:2110: 2025-11-12 05:15:52.454745 - step 36 of 72 - 1000 active elements (0 deactivated)
18:16:00 DEBUG opendrift:2116: 0 elements scheduled.
18:16:00 DEBUG opendrift:2118: ======================================================================
18:16:00 DEBUG opendrift:2129: 59.94771808045831 <- latitude -> 60.04005855795008
18:16:00 DEBUG opendrift:2129: 3.9123987822438093 <- longitude -> 4.098979455006848
18:16:00 DEBUG opendrift:2129: -55.738074915557476 <- z -> 0.0
18:16:00 DEBUG opendrift:2130: ---------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:16:00 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:16:00 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:00 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:16:00 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:00 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:16:00 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:16:00 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:16:00 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:16:00 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:00 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:00 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:16:00 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:16:00 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:00 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:16:00 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:00 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:16:00 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:00 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:00 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:16:00 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:16:00 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:16:00 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:16:00 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:16:00 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:16:00 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:16:00 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:16:00 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:16:00 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:00 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:16:00 DEBUG opendrift:696: No elements hit coastline.
18:16:00 DEBUG opendrift:1707: No elements to deactivate
18:16:00 DEBUG opendrift:2166: Calling OpenOil.update()
18:16:00 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:16:00 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:16:00 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
18:16:00 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:16:00 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:16:00 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:16:00 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:00 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:00 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:16:00 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:00 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:00 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:16:00 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:16:00 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:16:00 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:16:00 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:16:00 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:16:00 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:16:00 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:16:00 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:16:00 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:16:00 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0014790240697702172 and 0.2861933180158605 m/s
18:16:00 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:16:00 DEBUG opendrift:2109: ======================================================================
18:16:00 INFO opendrift:2110: 2025-11-12 06:15:52.454745 - step 37 of 72 - 1000 active elements (0 deactivated)
18:16:00 DEBUG opendrift:2116: 0 elements scheduled.
18:16:00 DEBUG opendrift:2118: ======================================================================
18:16:00 DEBUG opendrift:2129: 59.945644360149174 <- latitude -> 60.04052369836958
18:16:00 DEBUG opendrift:2129: 3.9199653529050833 <- longitude -> 4.105180729777027
18:16:00 DEBUG opendrift:2129: -55.81740445900707 <- z -> 0.0
18:16:00 DEBUG opendrift:2130: ---------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:16:00 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:16:00 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:00 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:16:00 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:00 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:16:00 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:16:00 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:16:00 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:16:00 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:00 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:00 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:16:00 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:16:00 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:00 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:16:00 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:00 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:16:00 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:00 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:00 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:16:00 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:16:00 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:16:00 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:16:00 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:16:00 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:16:00 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:16:00 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:16:00 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:16:00 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:00 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:16:00 DEBUG opendrift:696: No elements hit coastline.
18:16:00 DEBUG opendrift:1707: No elements to deactivate
18:16:00 DEBUG opendrift:2166: Calling OpenOil.update()
18:16:00 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:16:00 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:16:00 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
18:16:00 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:16:00 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:16:00 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:16:00 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:00 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:00 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:16:00 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:00 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:00 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:16:00 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:16:00 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:16:00 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:16:00 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:16:00 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:16:00 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:16:00 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:16:00 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:16:00 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:16:00 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.002256607881934403 and 0.2815146703693781 m/s
18:16:00 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:16:00 DEBUG opendrift:2109: ======================================================================
18:16:00 INFO opendrift:2110: 2025-11-12 07:15:52.454745 - step 38 of 72 - 1000 active elements (0 deactivated)
18:16:00 DEBUG opendrift:2116: 0 elements scheduled.
18:16:00 DEBUG opendrift:2118: ======================================================================
18:16:00 DEBUG opendrift:2129: 59.94346559629129 <- latitude -> 60.04292417713012
18:16:00 DEBUG opendrift:2129: 3.921619249491419 <- longitude -> 4.108235712617922
18:16:00 DEBUG opendrift:2129: -56.026191696515475 <- z -> 0.0
18:16:00 DEBUG opendrift:2130: ---------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:16:00 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:16:00 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:00 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:16:00 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:00 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:16:00 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:16:00 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:16:00 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:16:00 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:00 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:00 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:16:00 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:16:00 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:00 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:16:00 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:00 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:16:00 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:00 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:00 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:16:00 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:16:00 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:16:00 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:16:00 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:16:00 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:16:00 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:16:00 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:16:00 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:16:00 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:00 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:16:00 DEBUG opendrift:696: No elements hit coastline.
18:16:00 DEBUG opendrift:1707: No elements to deactivate
18:16:00 DEBUG opendrift:2166: Calling OpenOil.update()
18:16:00 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:16:00 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:16:00 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
18:16:00 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:16:00 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:16:00 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:16:00 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:00 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:00 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:16:00 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:00 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:00 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:16:00 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:16:00 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:16:00 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:16:00 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:16:00 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:16:00 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:16:00 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:16:00 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:16:00 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:16:00 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.004301153980563228 and 0.2640843019497672 m/s
18:16:00 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:16:00 DEBUG opendrift:2109: ======================================================================
18:16:00 INFO opendrift:2110: 2025-11-12 08:15:52.454745 - step 39 of 72 - 1000 active elements (0 deactivated)
18:16:00 DEBUG opendrift:2116: 0 elements scheduled.
18:16:00 DEBUG opendrift:2118: ======================================================================
18:16:00 DEBUG opendrift:2129: 59.942004971800756 <- latitude -> 60.043227300193436
18:16:00 DEBUG opendrift:2129: 3.918461286794789 <- longitude -> 4.110144249434225
18:16:00 DEBUG opendrift:2129: -55.83318868929813 <- z -> 0.0
18:16:00 DEBUG opendrift:2130: ---------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:16:00 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:16:00 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:00 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:16:00 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:00 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:16:00 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:16:00 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:16:00 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:16:00 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:00 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:00 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:16:00 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:16:00 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:00 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:16:00 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:00 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:16:00 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:00 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:00 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:16:00 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:16:00 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:16:00 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:16:00 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:16:00 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:16:00 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:16:00 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:16:00 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:16:00 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:00 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:16:00 DEBUG opendrift:696: No elements hit coastline.
18:16:00 DEBUG opendrift:1707: No elements to deactivate
18:16:00 DEBUG opendrift:2166: Calling OpenOil.update()
18:16:00 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:16:00 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:16:00 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
18:16:00 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:16:00 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:16:00 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:16:00 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:00 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:00 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:16:00 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:00 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:00 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:16:00 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:16:00 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:16:00 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:16:00 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:16:00 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:16:00 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:16:00 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:16:00 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:16:00 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:16:00 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0036562243431624624 and 0.29216894384377906 m/s
18:16:00 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:16:00 DEBUG opendrift:2109: ======================================================================
18:16:00 INFO opendrift:2110: 2025-11-12 09:15:52.454745 - step 40 of 72 - 1000 active elements (0 deactivated)
18:16:00 DEBUG opendrift:2116: 0 elements scheduled.
18:16:00 DEBUG opendrift:2118: ======================================================================
18:16:00 DEBUG opendrift:2129: 59.94481163029247 <- latitude -> 60.04517090017265
18:16:00 DEBUG opendrift:2129: 3.915484694964225 <- longitude -> 4.116897942609778
18:16:00 DEBUG opendrift:2129: -55.96130069308527 <- z -> 0.0
18:16:00 DEBUG opendrift:2130: ---------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:16:00 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:16:00 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:00 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:16:00 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:00 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:16:00 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:16:00 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:16:00 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:16:00 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:00 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:00 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:16:00 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:16:00 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:00 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:16:00 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:00 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:16:00 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:00 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:00 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:16:00 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:16:00 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:16:00 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:16:00 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:16:00 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:16:00 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:16:00 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:16:00 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:16:00 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:16:00 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:16:00 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:00 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:16:00 DEBUG opendrift:696: No elements hit coastline.
18:16:01 DEBUG opendrift:1707: No elements to deactivate
18:16:01 DEBUG opendrift:2166: Calling OpenOil.update()
18:16:01 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:16:01 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:16:01 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
18:16:01 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:16:01 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:16:01 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:16:01 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:01 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:01 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:16:01 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:01 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:01 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:16:01 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:16:01 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:16:01 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:16:01 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:16:01 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:16:01 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:16:01 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:16:01 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:16:01 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:16:01 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0020428633670991963 and 0.2764383763645849 m/s
18:16:01 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:16:01 DEBUG opendrift:2109: ======================================================================
18:16:01 INFO opendrift:2110: 2025-11-12 10:15:52.454745 - step 41 of 72 - 1000 active elements (0 deactivated)
18:16:01 DEBUG opendrift:2116: 0 elements scheduled.
18:16:01 DEBUG opendrift:2118: ======================================================================
18:16:01 DEBUG opendrift:2129: 59.947329904283635 <- latitude -> 60.045454264846285
18:16:01 DEBUG opendrift:2129: 3.9130118062222965 <- longitude -> 4.128495411756751
18:16:01 DEBUG opendrift:2129: -56.49542500399992 <- z -> 0.0
18:16:01 DEBUG opendrift:2130: ---------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:16:01 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:16:01 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:01 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:16:01 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:01 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:16:01 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:16:01 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:16:01 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:16:01 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:01 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:01 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:16:01 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:16:01 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:01 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:16:01 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:01 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:16:01 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:01 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:01 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:16:01 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:16:01 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:16:01 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:16:01 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:16:01 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:16:01 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:16:01 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:16:01 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:16:01 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:01 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:16:01 DEBUG opendrift:696: No elements hit coastline.
18:16:01 DEBUG opendrift:1707: No elements to deactivate
18:16:01 DEBUG opendrift:2166: Calling OpenOil.update()
18:16:01 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:16:01 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:16:01 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
18:16:01 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:16:01 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:16:01 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:16:01 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:01 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:01 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:16:01 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:01 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:01 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:16:01 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:16:01 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:16:01 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:16:01 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:16:01 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:16:01 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:16:01 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:16:01 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:16:01 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:16:01 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.00328709556680579 and 0.2959985814367729 m/s
18:16:01 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:16:01 DEBUG opendrift:2109: ======================================================================
18:16:01 INFO opendrift:2110: 2025-11-12 11:15:52.454745 - step 42 of 72 - 1000 active elements (0 deactivated)
18:16:01 DEBUG opendrift:2116: 0 elements scheduled.
18:16:01 DEBUG opendrift:2118: ======================================================================
18:16:01 DEBUG opendrift:2129: 59.94551108983492 <- latitude -> 60.04488019526624
18:16:01 DEBUG opendrift:2129: 3.917697197409922 <- longitude -> 4.135588208739148
18:16:01 DEBUG opendrift:2129: -56.44677114324868 <- z -> 0.0
18:16:01 DEBUG opendrift:2130: ---------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:16:01 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:16:01 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:01 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:16:01 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:01 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:16:01 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:16:01 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:16:01 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:16:01 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:01 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:01 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:16:01 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:16:01 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:01 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:16:01 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:01 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:16:01 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:01 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:01 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:16:01 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:16:01 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:16:01 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:16:01 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:16:01 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:16:01 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:16:01 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:16:01 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:16:01 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:01 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:16:01 DEBUG opendrift:696: No elements hit coastline.
18:16:01 DEBUG opendrift:1707: No elements to deactivate
18:16:01 DEBUG opendrift:2166: Calling OpenOil.update()
18:16:01 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:16:01 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:16:01 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
18:16:01 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:16:01 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:16:01 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:16:01 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:01 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:01 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:16:01 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:01 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:01 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:16:01 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:16:01 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:16:01 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:16:01 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:16:01 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:16:01 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:16:01 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:16:01 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:16:01 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:16:01 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0035557575117498193 and 0.31795621567325416 m/s
18:16:01 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:16:01 DEBUG opendrift:2109: ======================================================================
18:16:01 INFO opendrift:2110: 2025-11-12 12:15:52.454745 - step 43 of 72 - 1000 active elements (0 deactivated)
18:16:01 DEBUG opendrift:2116: 0 elements scheduled.
18:16:01 DEBUG opendrift:2118: ======================================================================
18:16:01 DEBUG opendrift:2129: 59.94608472307496 <- latitude -> 60.04578196088521
18:16:01 DEBUG opendrift:2129: 3.914929537821028 <- longitude -> 4.133370062318672
18:16:01 DEBUG opendrift:2129: -56.11034916124547 <- z -> 0.0
18:16:01 DEBUG opendrift:2130: ---------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:16:01 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:16:01 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:01 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:16:01 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:01 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:16:01 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:16:01 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:16:01 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:16:01 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:01 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:01 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:16:01 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:16:01 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:01 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:16:01 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:01 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:16:01 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:01 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:01 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:16:01 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:16:01 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:16:01 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:16:01 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:16:01 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:16:01 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:16:01 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:16:01 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:16:01 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:01 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:16:01 DEBUG opendrift:696: No elements hit coastline.
18:16:01 DEBUG opendrift:1707: No elements to deactivate
18:16:01 DEBUG opendrift:2166: Calling OpenOil.update()
18:16:01 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:16:01 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:16:01 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
18:16:01 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:16:01 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:16:01 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:16:01 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:01 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:01 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:16:01 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:01 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:01 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:16:01 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:16:01 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:16:01 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:16:01 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:16:01 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:16:01 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:16:01 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:16:01 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:16:01 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:16:01 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.001991822914842502 and 0.28683880335506023 m/s
18:16:01 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:16:01 DEBUG opendrift:2109: ======================================================================
18:16:01 INFO opendrift:2110: 2025-11-12 13:15:52.454745 - step 44 of 72 - 1000 active elements (0 deactivated)
18:16:01 DEBUG opendrift:2116: 0 elements scheduled.
18:16:01 DEBUG opendrift:2118: ======================================================================
18:16:01 DEBUG opendrift:2129: 59.94946144546982 <- latitude -> 60.044448018352014
18:16:01 DEBUG opendrift:2129: 3.915135030894537 <- longitude -> 4.1289398238429795
18:16:01 DEBUG opendrift:2129: -56.17525673295478 <- z -> 0.0
18:16:01 DEBUG opendrift:2130: ---------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:16:01 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:16:01 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:01 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:16:01 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:01 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:16:01 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:16:01 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:16:01 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:16:01 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:01 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:01 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:16:01 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:16:01 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:01 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:16:01 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:01 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:16:01 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:01 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:01 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:16:01 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:16:01 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:16:01 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:16:01 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:16:01 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:16:01 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:16:01 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:16:01 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:16:01 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:01 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:16:01 DEBUG opendrift:696: No elements hit coastline.
18:16:01 DEBUG opendrift:1707: No elements to deactivate
18:16:01 DEBUG opendrift:2166: Calling OpenOil.update()
18:16:01 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:16:01 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:16:01 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
18:16:01 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:16:01 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:16:01 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:16:01 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:01 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:01 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:16:01 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:01 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:01 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:16:01 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:16:01 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:16:01 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:16:01 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:16:01 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:16:01 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:16:01 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:16:01 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:16:01 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:16:01 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.004917165419061945 and 0.25159650008116047 m/s
18:16:01 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:16:01 DEBUG opendrift:2109: ======================================================================
18:16:01 INFO opendrift:2110: 2025-11-12 14:15:52.454745 - step 45 of 72 - 1000 active elements (0 deactivated)
18:16:01 DEBUG opendrift:2116: 0 elements scheduled.
18:16:01 DEBUG opendrift:2118: ======================================================================
18:16:01 DEBUG opendrift:2129: 59.951198405020214 <- latitude -> 60.04537677413846
18:16:01 DEBUG opendrift:2129: 3.9158853311295583 <- longitude -> 4.128035087883245
18:16:01 DEBUG opendrift:2129: -55.92063328349611 <- z -> 0.0
18:16:01 DEBUG opendrift:2130: ---------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:16:01 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:16:01 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:01 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:16:01 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:01 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:16:01 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:16:01 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:16:01 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:16:01 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:01 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:01 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:16:01 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:16:01 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:01 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:16:01 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:01 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:16:01 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:01 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:01 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:16:01 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:16:01 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:16:01 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:16:01 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:16:01 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:16:01 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:16:01 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:16:01 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:16:01 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:01 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:16:01 DEBUG opendrift:696: No elements hit coastline.
18:16:01 DEBUG opendrift:1707: No elements to deactivate
18:16:01 DEBUG opendrift:2166: Calling OpenOil.update()
18:16:01 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:16:01 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:16:01 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
18:16:01 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:16:01 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:16:01 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:16:01 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:01 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:01 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:16:01 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:01 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:01 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:16:01 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:16:01 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:16:01 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:16:01 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:16:01 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:16:01 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:16:01 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:16:01 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:16:01 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:16:01 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0018538313404115592 and 0.28773947227876795 m/s
18:16:01 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:16:01 DEBUG opendrift:2109: ======================================================================
18:16:01 INFO opendrift:2110: 2025-11-12 15:15:52.454745 - step 46 of 72 - 1000 active elements (0 deactivated)
18:16:01 DEBUG opendrift:2116: 0 elements scheduled.
18:16:01 DEBUG opendrift:2118: ======================================================================
18:16:01 DEBUG opendrift:2129: 59.95097449163343 <- latitude -> 60.04643173223404
18:16:01 DEBUG opendrift:2129: 3.9096927721811294 <- longitude -> 4.129453060724557
18:16:01 DEBUG opendrift:2129: -56.093964108069706 <- z -> 0.0
18:16:01 DEBUG opendrift:2130: ---------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:16:01 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:16:01 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:01 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:16:01 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:01 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:16:01 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:16:01 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:16:01 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:16:01 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:01 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:01 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:16:01 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:16:01 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:01 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:16:01 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:01 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:16:01 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:01 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:01 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:16:01 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:16:01 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:16:01 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:16:01 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:16:01 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:16:01 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:16:01 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:16:01 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:16:01 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:01 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:16:01 DEBUG opendrift:696: No elements hit coastline.
18:16:01 DEBUG opendrift:1707: No elements to deactivate
18:16:01 DEBUG opendrift:2166: Calling OpenOil.update()
18:16:01 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:16:01 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:16:01 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
18:16:01 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:16:01 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:16:01 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:16:01 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:01 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:01 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:16:01 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:01 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:01 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:16:01 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:16:01 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:16:01 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:16:01 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:16:01 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:16:01 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:16:01 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:16:01 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:16:01 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:16:01 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0029300486850991087 and 0.25681762616474624 m/s
18:16:01 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:16:01 DEBUG opendrift:2109: ======================================================================
18:16:01 INFO opendrift:2110: 2025-11-12 16:15:52.454745 - step 47 of 72 - 1000 active elements (0 deactivated)
18:16:01 DEBUG opendrift:2116: 0 elements scheduled.
18:16:01 DEBUG opendrift:2118: ======================================================================
18:16:01 DEBUG opendrift:2129: 59.951701920661215 <- latitude -> 60.04552358509092
18:16:01 DEBUG opendrift:2129: 3.9037044924933593 <- longitude -> 4.131100780654932
18:16:01 DEBUG opendrift:2129: -56.10553965879445 <- z -> 0.0
18:16:01 DEBUG opendrift:2130: ---------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:16:01 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:16:01 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:01 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:16:01 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:01 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:16:01 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:16:01 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:16:01 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:16:01 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:01 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:01 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:16:01 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:16:01 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:01 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:16:01 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:01 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:16:01 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:01 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:01 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:16:01 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:16:01 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:16:01 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:16:01 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:16:01 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:16:01 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:16:01 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:16:01 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:16:01 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:01 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:16:01 DEBUG opendrift:696: No elements hit coastline.
18:16:01 DEBUG opendrift:1707: No elements to deactivate
18:16:01 DEBUG opendrift:2166: Calling OpenOil.update()
18:16:01 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:16:01 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:16:01 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
18:16:01 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:16:01 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:16:01 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:16:01 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:01 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:01 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:16:01 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:01 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:01 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:16:01 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:16:01 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:16:01 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:16:01 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:16:01 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:16:01 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:16:01 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:16:01 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:16:01 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:16:01 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0012124780607103785 and 0.2315688691386235 m/s
18:16:01 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:16:01 DEBUG opendrift:2109: ======================================================================
18:16:01 INFO opendrift:2110: 2025-11-12 17:15:52.454745 - step 48 of 72 - 1000 active elements (0 deactivated)
18:16:01 DEBUG opendrift:2116: 0 elements scheduled.
18:16:01 DEBUG opendrift:2118: ======================================================================
18:16:01 DEBUG opendrift:2129: 59.95224417680791 <- latitude -> 60.04992175988092
18:16:01 DEBUG opendrift:2129: 3.9003474769956337 <- longitude -> 4.126903099511567
18:16:01 DEBUG opendrift:2129: -56.26195402883567 <- z -> 0.0
18:16:01 DEBUG opendrift:2130: ---------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:16:01 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:16:01 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:01 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:16:01 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:01 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:16:01 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:16:01 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:16:01 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:16:01 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:01 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:01 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:16:01 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:16:01 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:01 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:16:01 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:01 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:16:01 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:01 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:01 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:16:01 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:16:01 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:16:01 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:16:01 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:16:01 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:16:01 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:16:01 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:16:01 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:16:01 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:01 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:16:01 DEBUG opendrift:696: No elements hit coastline.
18:16:01 DEBUG opendrift:1707: No elements to deactivate
18:16:01 DEBUG opendrift:2166: Calling OpenOil.update()
18:16:01 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:16:01 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:16:01 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
18:16:01 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:16:01 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:16:01 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:16:01 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:01 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:01 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:16:01 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:01 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:01 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:16:01 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:16:01 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:16:01 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:16:01 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:16:01 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:16:01 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:16:01 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:16:01 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:16:01 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:16:01 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.004828536801733015 and 0.2754519518330615 m/s
18:16:01 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:16:01 DEBUG opendrift:2109: ======================================================================
18:16:01 INFO opendrift:2110: 2025-11-12 18:15:52.454745 - step 49 of 72 - 1000 active elements (0 deactivated)
18:16:01 DEBUG opendrift:2116: 0 elements scheduled.
18:16:01 DEBUG opendrift:2118: ======================================================================
18:16:01 DEBUG opendrift:2129: 59.950670295493495 <- latitude -> 60.048589065370436
18:16:01 DEBUG opendrift:2129: 3.8974649895973323 <- longitude -> 4.1264795850137
18:16:01 DEBUG opendrift:2129: -55.946413881547066 <- z -> 0.0
18:16:01 DEBUG opendrift:2130: ---------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:16:01 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:16:01 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:01 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:16:01 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:01 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:16:01 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:16:01 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:16:01 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:16:01 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:01 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:01 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:16:01 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:16:01 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:01 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:16:01 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:01 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:16:01 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:01 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:01 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:16:01 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:16:01 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:16:01 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:16:01 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:16:01 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:16:01 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:16:01 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:16:01 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:16:01 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:16:01 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:16:01 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:01 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:16:01 DEBUG opendrift:696: No elements hit coastline.
18:16:01 DEBUG opendrift:1707: No elements to deactivate
18:16:01 DEBUG opendrift:2166: Calling OpenOil.update()
18:16:01 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:16:01 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:16:01 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
18:16:01 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:16:01 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:16:01 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:16:01 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:01 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:01 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:16:01 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:01 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:01 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:16:01 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:16:01 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:16:01 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:16:01 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:16:01 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:16:01 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:16:01 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:16:02 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:16:02 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:16:02 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.004925027855710996 and 0.2994884349519409 m/s
18:16:02 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:16:02 DEBUG opendrift:2109: ======================================================================
18:16:02 INFO opendrift:2110: 2025-11-12 19:15:52.454745 - step 50 of 72 - 1000 active elements (0 deactivated)
18:16:02 DEBUG opendrift:2116: 0 elements scheduled.
18:16:02 DEBUG opendrift:2118: ======================================================================
18:16:02 DEBUG opendrift:2129: 59.95207160594194 <- latitude -> 60.04810548341709
18:16:02 DEBUG opendrift:2129: 3.893742591372093 <- longitude -> 4.1312691958194145
18:16:02 DEBUG opendrift:2129: -56.33209629377252 <- z -> 0.0
18:16:02 DEBUG opendrift:2130: ---------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:16:02 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:16:02 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:02 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:16:02 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:02 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:16:02 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:16:02 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:16:02 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:16:02 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:02 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:02 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:16:02 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:16:02 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:02 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:16:02 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:02 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:16:02 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:02 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:02 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:16:02 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:16:02 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:16:02 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:16:02 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:16:02 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:16:02 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:16:02 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:16:02 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:16:02 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:02 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:16:02 DEBUG opendrift:696: No elements hit coastline.
18:16:02 DEBUG opendrift:1707: No elements to deactivate
18:16:02 DEBUG opendrift:2166: Calling OpenOil.update()
18:16:02 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:16:02 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:16:02 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
18:16:02 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:16:02 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:16:02 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:16:02 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:02 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:02 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:16:02 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:02 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:02 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:16:02 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:16:02 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:16:02 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:16:02 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:16:02 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:16:02 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:16:02 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:16:02 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:16:02 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:16:02 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.004804355228721794 and 0.26770718739517746 m/s
18:16:02 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:16:02 DEBUG opendrift:2109: ======================================================================
18:16:02 INFO opendrift:2110: 2025-11-12 20:15:52.454745 - step 51 of 72 - 1000 active elements (0 deactivated)
18:16:02 DEBUG opendrift:2116: 0 elements scheduled.
18:16:02 DEBUG opendrift:2118: ======================================================================
18:16:02 DEBUG opendrift:2129: 59.949060651403286 <- latitude -> 60.046382137597135
18:16:02 DEBUG opendrift:2129: 3.896763672660838 <- longitude -> 4.129324110511231
18:16:02 DEBUG opendrift:2129: -55.91383475680791 <- z -> 0.0
18:16:02 DEBUG opendrift:2130: ---------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:16:02 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:16:02 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:02 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:16:02 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:02 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:16:02 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:16:02 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:16:02 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:16:02 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:02 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:02 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:16:02 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:16:02 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:02 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:16:02 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:02 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:16:02 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:02 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:02 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:16:02 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:16:02 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:16:02 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:16:02 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:16:02 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:16:02 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:16:02 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:16:02 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:16:02 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:02 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:16:02 DEBUG opendrift:696: No elements hit coastline.
18:16:02 DEBUG opendrift:1707: No elements to deactivate
18:16:02 DEBUG opendrift:2166: Calling OpenOil.update()
18:16:02 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:16:02 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:16:02 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
18:16:02 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:16:02 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:16:02 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:16:02 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:02 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:02 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:16:02 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:02 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:02 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:16:02 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:16:02 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:16:02 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:16:02 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:16:02 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:16:02 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:16:02 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:16:02 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:16:02 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:16:02 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.003450828734166133 and 0.2502093530992484 m/s
18:16:02 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:16:02 DEBUG opendrift:2109: ======================================================================
18:16:02 INFO opendrift:2110: 2025-11-12 21:15:52.454745 - step 52 of 72 - 1000 active elements (0 deactivated)
18:16:02 DEBUG opendrift:2116: 0 elements scheduled.
18:16:02 DEBUG opendrift:2118: ======================================================================
18:16:02 DEBUG opendrift:2129: 59.946809259033216 <- latitude -> 60.04775397432769
18:16:02 DEBUG opendrift:2129: 3.893686824895126 <- longitude -> 4.122584977736862
18:16:02 DEBUG opendrift:2129: -55.70863348263968 <- z -> 0.0
18:16:02 DEBUG opendrift:2130: ---------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:16:02 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:16:02 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:02 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:16:02 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:02 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:16:02 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:16:02 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:16:02 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:16:02 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:02 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:02 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:16:02 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:16:02 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:02 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:16:02 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:02 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:16:02 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:02 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:02 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:16:02 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:16:02 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:16:02 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:16:02 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:16:02 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:16:02 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:16:02 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:16:02 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:16:02 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:02 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:16:02 DEBUG opendrift:696: No elements hit coastline.
18:16:02 DEBUG opendrift:1707: No elements to deactivate
18:16:02 DEBUG opendrift:2166: Calling OpenOil.update()
18:16:02 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:16:02 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:16:02 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
18:16:02 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:16:02 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:16:02 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:16:02 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:02 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:02 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:16:02 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:02 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:02 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:16:02 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:16:02 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:16:02 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:16:02 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:16:02 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:16:02 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:16:02 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:16:02 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:16:02 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:16:02 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0018308891472327967 and 0.25443065306797136 m/s
18:16:02 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:16:02 DEBUG opendrift:2109: ======================================================================
18:16:02 INFO opendrift:2110: 2025-11-12 22:15:52.454745 - step 53 of 72 - 1000 active elements (0 deactivated)
18:16:02 DEBUG opendrift:2116: 0 elements scheduled.
18:16:02 DEBUG opendrift:2118: ======================================================================
18:16:02 DEBUG opendrift:2129: 59.9476916673397 <- latitude -> 60.049703835777265
18:16:02 DEBUG opendrift:2129: 3.8882008963501313 <- longitude -> 4.127114264607248
18:16:02 DEBUG opendrift:2129: -56.021641703528026 <- z -> 0.0
18:16:02 DEBUG opendrift:2130: ---------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:16:02 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:16:02 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:02 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:16:02 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:02 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:16:02 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:16:02 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:16:02 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:16:02 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:02 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:02 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:16:02 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:16:02 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:02 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:16:02 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:02 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:16:02 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:02 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:02 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:16:02 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:16:02 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:16:02 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:16:02 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:16:02 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:16:02 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:16:02 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:16:02 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:16:02 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:02 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:16:02 DEBUG opendrift:696: No elements hit coastline.
18:16:02 DEBUG opendrift:1707: No elements to deactivate
18:16:02 DEBUG opendrift:2166: Calling OpenOil.update()
18:16:02 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:16:02 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:16:02 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
18:16:02 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:16:02 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:16:02 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:16:02 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:02 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:02 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:16:02 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:02 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:02 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:16:02 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:16:02 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:16:02 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:16:02 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:16:02 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:16:02 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:16:02 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:16:02 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:16:02 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:16:02 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.005352573730319705 and 0.2745514794709536 m/s
18:16:02 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:16:02 DEBUG opendrift:2109: ======================================================================
18:16:02 INFO opendrift:2110: 2025-11-12 23:15:52.454745 - step 54 of 72 - 1000 active elements (0 deactivated)
18:16:02 DEBUG opendrift:2116: 0 elements scheduled.
18:16:02 DEBUG opendrift:2118: ======================================================================
18:16:02 DEBUG opendrift:2129: 59.94886219031619 <- latitude -> 60.049137470121394
18:16:02 DEBUG opendrift:2129: 3.895695358982507 <- longitude -> 4.129241850624498
18:16:02 DEBUG opendrift:2129: -55.69567926001158 <- z -> 0.0
18:16:02 DEBUG opendrift:2130: ---------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:16:02 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:16:02 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:02 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:16:02 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:02 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:16:02 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:16:02 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:16:02 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:16:02 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:02 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:02 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:16:02 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:16:02 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:02 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:16:02 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:02 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:16:02 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:02 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:02 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:16:02 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:16:02 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:16:02 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:16:02 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:16:02 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:16:02 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:16:02 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:16:02 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:16:02 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:02 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:16:02 DEBUG opendrift:696: No elements hit coastline.
18:16:02 DEBUG opendrift:1707: No elements to deactivate
18:16:02 DEBUG opendrift:2166: Calling OpenOil.update()
18:16:02 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:16:02 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:16:02 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
18:16:02 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:16:02 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:16:02 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:16:02 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:02 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:02 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:16:02 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:02 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:02 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:16:02 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:16:02 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:16:02 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:16:02 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:16:02 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:16:02 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:16:02 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:16:02 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:16:02 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:16:02 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0035909213407049998 and 0.25877219503842386 m/s
18:16:02 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:16:02 DEBUG opendrift:2109: ======================================================================
18:16:02 INFO opendrift:2110: 2025-11-13 00:15:52.454745 - step 55 of 72 - 1000 active elements (0 deactivated)
18:16:02 DEBUG opendrift:2116: 0 elements scheduled.
18:16:02 DEBUG opendrift:2118: ======================================================================
18:16:02 DEBUG opendrift:2129: 59.94916318194832 <- latitude -> 60.04685232130483
18:16:02 DEBUG opendrift:2129: 3.8922013121834884 <- longitude -> 4.131603333437745
18:16:02 DEBUG opendrift:2129: -55.67437743630292 <- z -> 0.0
18:16:02 DEBUG opendrift:2130: ---------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:16:02 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:16:02 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:02 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:16:02 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:02 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:16:02 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:16:02 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:16:02 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:16:02 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:02 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:02 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:16:02 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:16:02 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:02 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:16:02 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:02 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:16:02 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:02 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:02 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:16:02 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:16:02 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:16:02 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:16:02 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:16:02 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:16:02 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:16:02 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:16:02 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:16:02 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:02 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:16:02 DEBUG opendrift:696: No elements hit coastline.
18:16:02 DEBUG opendrift:1707: No elements to deactivate
18:16:02 DEBUG opendrift:2166: Calling OpenOil.update()
18:16:02 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:16:02 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:16:02 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
18:16:02 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:16:02 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:16:02 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:16:02 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:02 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:02 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:16:02 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:02 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:02 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:16:02 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:16:02 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:16:02 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:16:02 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:16:02 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:16:02 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:16:02 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:16:02 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:16:02 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:16:02 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0029312124265568123 and 0.31761704412750213 m/s
18:16:02 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:16:02 DEBUG opendrift:2109: ======================================================================
18:16:02 INFO opendrift:2110: 2025-11-13 01:15:52.454745 - step 56 of 72 - 1000 active elements (0 deactivated)
18:16:02 DEBUG opendrift:2116: 0 elements scheduled.
18:16:02 DEBUG opendrift:2118: ======================================================================
18:16:02 DEBUG opendrift:2129: 59.94893502524365 <- latitude -> 60.04885377634837
18:16:02 DEBUG opendrift:2129: 3.8922160703282054 <- longitude -> 4.132373750741934
18:16:02 DEBUG opendrift:2129: -55.92310177544925 <- z -> 0.0
18:16:02 DEBUG opendrift:2130: ---------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:16:02 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:16:02 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:02 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:16:02 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:02 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:16:02 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:16:02 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:16:02 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:16:02 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:02 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:02 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:16:02 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:16:02 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:02 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:16:02 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:02 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:16:02 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:02 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:02 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:16:02 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:16:02 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:16:02 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:16:02 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:16:02 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:16:02 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:16:02 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:16:02 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:16:02 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:02 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:16:02 DEBUG opendrift:696: No elements hit coastline.
18:16:02 DEBUG opendrift:1707: No elements to deactivate
18:16:02 DEBUG opendrift:2166: Calling OpenOil.update()
18:16:02 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:16:02 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:16:02 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
18:16:02 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:16:02 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:16:02 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:16:02 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:02 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:02 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:16:02 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:02 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:02 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:16:02 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:16:02 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:16:02 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:16:02 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:16:02 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:16:02 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:16:02 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:16:02 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:16:02 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:16:02 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.003174531945168303 and 0.26511110847956676 m/s
18:16:02 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:16:02 DEBUG opendrift:2109: ======================================================================
18:16:02 INFO opendrift:2110: 2025-11-13 02:15:52.454745 - step 57 of 72 - 1000 active elements (0 deactivated)
18:16:02 DEBUG opendrift:2116: 0 elements scheduled.
18:16:02 DEBUG opendrift:2118: ======================================================================
18:16:02 DEBUG opendrift:2129: 59.949481453543726 <- latitude -> 60.04761340041796
18:16:02 DEBUG opendrift:2129: 3.8817841687921963 <- longitude -> 4.131086452259155
18:16:02 DEBUG opendrift:2129: -56.113276705163344 <- z -> 0.0
18:16:02 DEBUG opendrift:2130: ---------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:16:02 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:16:02 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:02 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:16:02 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:02 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:16:02 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:16:02 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:16:02 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:16:02 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:02 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:02 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:16:02 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:16:02 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:02 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:16:02 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:02 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:16:02 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:02 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:02 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:16:02 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:16:02 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:16:02 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:16:02 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:16:02 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:16:02 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:16:02 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:16:02 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:16:02 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:02 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:16:02 DEBUG opendrift:696: No elements hit coastline.
18:16:02 DEBUG opendrift:1707: No elements to deactivate
18:16:02 DEBUG opendrift:2166: Calling OpenOil.update()
18:16:02 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:16:02 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:16:02 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
18:16:02 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:16:02 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:16:02 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:16:02 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:02 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:02 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:16:02 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:02 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:02 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:16:02 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:16:02 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:16:02 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:16:02 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:16:02 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:16:02 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:16:02 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:16:02 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:16:02 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:16:02 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0036475179711561515 and 0.3105620923694763 m/s
18:16:02 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:16:02 DEBUG opendrift:2109: ======================================================================
18:16:02 INFO opendrift:2110: 2025-11-13 03:15:52.454745 - step 58 of 72 - 1000 active elements (0 deactivated)
18:16:02 DEBUG opendrift:2116: 0 elements scheduled.
18:16:02 DEBUG opendrift:2118: ======================================================================
18:16:02 DEBUG opendrift:2129: 59.949193254482424 <- latitude -> 60.05016756633958
18:16:02 DEBUG opendrift:2129: 3.879186036374176 <- longitude -> 4.13236351894012
18:16:02 DEBUG opendrift:2129: -56.456090293645765 <- z -> 0.0
18:16:02 DEBUG opendrift:2130: ---------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:16:02 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:16:02 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:02 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:16:02 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:02 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:16:02 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:16:02 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:16:02 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:16:02 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:02 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:02 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:16:02 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:16:02 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:02 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:16:02 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:02 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:16:02 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:02 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:02 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:16:02 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:16:02 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:16:02 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:16:02 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:16:02 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:16:02 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:16:02 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:16:02 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:16:02 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:02 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:16:02 DEBUG opendrift:696: No elements hit coastline.
18:16:02 DEBUG opendrift:1707: No elements to deactivate
18:16:02 DEBUG opendrift:2166: Calling OpenOil.update()
18:16:02 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:16:02 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:16:02 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
18:16:02 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:16:02 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:16:02 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:16:02 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:02 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:02 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:16:02 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:02 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:02 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:16:02 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:16:02 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:16:02 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:16:02 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:16:02 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:16:02 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:16:02 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:16:02 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:16:02 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:16:02 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.002946543054548501 and 0.3542742290295432 m/s
18:16:02 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:16:02 DEBUG opendrift:2109: ======================================================================
18:16:02 INFO opendrift:2110: 2025-11-13 04:15:52.454745 - step 59 of 72 - 1000 active elements (0 deactivated)
18:16:02 DEBUG opendrift:2116: 0 elements scheduled.
18:16:02 DEBUG opendrift:2118: ======================================================================
18:16:02 DEBUG opendrift:2129: 59.9482803202869 <- latitude -> 60.05061098814613
18:16:02 DEBUG opendrift:2129: 3.881635624925042 <- longitude -> 4.139954494778773
18:16:02 DEBUG opendrift:2129: -56.241443739962506 <- z -> 0.0
18:16:02 DEBUG opendrift:2130: ---------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:16:02 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:16:02 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:02 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:16:02 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:02 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:16:02 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:16:02 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:16:02 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:16:02 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:02 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:02 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:16:02 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:16:02 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:02 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:16:02 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:02 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:16:02 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:02 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:02 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:16:02 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:16:02 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:16:02 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:16:02 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:16:02 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:16:02 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:16:02 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:16:02 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:16:02 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:02 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:16:02 DEBUG opendrift:696: No elements hit coastline.
18:16:02 DEBUG opendrift:1707: No elements to deactivate
18:16:02 DEBUG opendrift:2166: Calling OpenOil.update()
18:16:02 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:16:02 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:16:02 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
18:16:02 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:16:02 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:16:02 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:16:02 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:02 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:02 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:16:02 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:02 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:02 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:16:02 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:16:02 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:16:02 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:16:02 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:16:02 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:16:02 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:16:02 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:16:02 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:16:02 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:16:02 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.005611414469381687 and 0.33202694609320665 m/s
18:16:02 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:16:02 DEBUG opendrift:2109: ======================================================================
18:16:02 INFO opendrift:2110: 2025-11-13 05:15:52.454745 - step 60 of 72 - 1000 active elements (0 deactivated)
18:16:02 DEBUG opendrift:2116: 0 elements scheduled.
18:16:02 DEBUG opendrift:2118: ======================================================================
18:16:02 DEBUG opendrift:2129: 59.94628950813689 <- latitude -> 60.05065753842936
18:16:02 DEBUG opendrift:2129: 3.886164133841409 <- longitude -> 4.140795204641947
18:16:02 DEBUG opendrift:2129: -55.798827220092036 <- z -> 0.0
18:16:02 DEBUG opendrift:2130: ---------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:16:02 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:16:02 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:02 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:16:02 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:02 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:16:02 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:16:02 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:16:02 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:16:02 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:02 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:02 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:16:02 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:16:02 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:02 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:16:02 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:02 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:16:02 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:02 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:02 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:16:02 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:16:02 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:16:02 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:16:02 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:16:02 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:16:02 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:16:02 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:16:02 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:16:02 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:16:02 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:16:02 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:02 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:16:02 DEBUG opendrift:696: No elements hit coastline.
18:16:02 DEBUG opendrift:1707: No elements to deactivate
18:16:02 DEBUG opendrift:2166: Calling OpenOil.update()
18:16:02 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:16:02 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:16:02 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
18:16:02 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:16:02 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:16:02 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:16:02 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:02 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:02 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:16:02 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:02 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:02 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:16:02 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:16:03 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:16:03 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:16:03 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:16:03 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:16:03 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:16:03 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:16:03 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:16:03 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:16:03 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0017543458465601324 and 0.2725048787199033 m/s
18:16:03 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:16:03 DEBUG opendrift:2109: ======================================================================
18:16:03 INFO opendrift:2110: 2025-11-13 06:15:52.454745 - step 61 of 72 - 1000 active elements (0 deactivated)
18:16:03 DEBUG opendrift:2116: 0 elements scheduled.
18:16:03 DEBUG opendrift:2118: ======================================================================
18:16:03 DEBUG opendrift:2129: 59.94425125596875 <- latitude -> 60.05192238352298
18:16:03 DEBUG opendrift:2129: 3.883088657200481 <- longitude -> 4.138350219566714
18:16:03 DEBUG opendrift:2129: -56.039250349439335 <- z -> 0.0
18:16:03 DEBUG opendrift:2130: ---------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:16:03 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:16:03 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:03 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:16:03 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:03 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:16:03 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:16:03 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:16:03 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:16:03 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:03 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:03 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:16:03 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:16:03 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:03 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:16:03 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:03 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:16:03 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:03 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:03 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:16:03 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:16:03 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:16:03 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:16:03 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:16:03 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:16:03 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:16:03 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:16:03 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:16:03 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:03 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:16:03 DEBUG opendrift:696: No elements hit coastline.
18:16:03 DEBUG opendrift:1707: No elements to deactivate
18:16:03 DEBUG opendrift:2166: Calling OpenOil.update()
18:16:03 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:16:03 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:16:03 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
18:16:03 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:16:03 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:16:03 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:16:03 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:03 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:03 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:16:03 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:03 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:03 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:16:03 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:16:03 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:16:03 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:16:03 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:16:03 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:16:03 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:16:03 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:16:03 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:16:03 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:16:03 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0034568580903300275 and 0.3183000735653997 m/s
18:16:03 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:16:03 DEBUG opendrift:2109: ======================================================================
18:16:03 INFO opendrift:2110: 2025-11-13 07:15:52.454745 - step 62 of 72 - 1000 active elements (0 deactivated)
18:16:03 DEBUG opendrift:2116: 0 elements scheduled.
18:16:03 DEBUG opendrift:2118: ======================================================================
18:16:03 DEBUG opendrift:2129: 59.9407335852235 <- latitude -> 60.05238322115593
18:16:03 DEBUG opendrift:2129: 3.883210704828822 <- longitude -> 4.1404124867272545
18:16:03 DEBUG opendrift:2129: -55.92468643921042 <- z -> 0.0
18:16:03 DEBUG opendrift:2130: ---------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:16:03 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:16:03 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:03 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:16:03 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:03 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:16:03 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:16:03 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:16:03 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:16:03 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:03 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:03 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:16:03 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:16:03 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:03 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:16:03 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:03 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:16:03 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:03 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:03 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:16:03 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:16:03 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:16:03 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:16:03 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:16:03 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:16:03 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:16:03 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:16:03 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:16:03 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:03 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:16:03 DEBUG opendrift:696: No elements hit coastline.
18:16:03 DEBUG opendrift:1707: No elements to deactivate
18:16:03 DEBUG opendrift:2166: Calling OpenOil.update()
18:16:03 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:16:03 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:16:03 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
18:16:03 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:16:03 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:16:03 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:16:03 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:03 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:03 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:16:03 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:03 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:03 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:16:03 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:16:03 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:16:03 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:16:03 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:16:03 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:16:03 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:16:03 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:16:03 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:16:03 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:16:03 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.004471727007293897 and 0.25717382889182455 m/s
18:16:03 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:16:03 DEBUG opendrift:2109: ======================================================================
18:16:03 INFO opendrift:2110: 2025-11-13 08:15:52.454745 - step 63 of 72 - 1000 active elements (0 deactivated)
18:16:03 DEBUG opendrift:2116: 0 elements scheduled.
18:16:03 DEBUG opendrift:2118: ======================================================================
18:16:03 DEBUG opendrift:2129: 59.93959685502029 <- latitude -> 60.05305033727146
18:16:03 DEBUG opendrift:2129: 3.8769636528323903 <- longitude -> 4.13691328626571
18:16:03 DEBUG opendrift:2129: -55.96802880196617 <- z -> 0.0
18:16:03 DEBUG opendrift:2130: ---------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:16:03 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:16:03 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:03 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:16:03 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:03 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:16:03 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:16:03 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:16:03 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:16:03 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:03 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:03 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:16:03 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:16:03 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:03 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:16:03 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:03 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:16:03 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:03 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:03 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:16:03 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:16:03 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:16:03 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:16:03 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:16:03 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:16:03 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:16:03 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:16:03 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:16:03 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:03 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:16:03 DEBUG opendrift:696: No elements hit coastline.
18:16:03 DEBUG opendrift:1707: No elements to deactivate
18:16:03 DEBUG opendrift:2166: Calling OpenOil.update()
18:16:03 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:16:03 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:16:03 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
18:16:03 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:16:03 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:16:03 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:16:03 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:03 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:03 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:16:03 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:03 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:03 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:16:03 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:16:03 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:16:03 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:16:03 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:16:03 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:16:03 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:16:03 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:16:03 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:16:03 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:16:03 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0008122463795154521 and 0.3390488213336253 m/s
18:16:03 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:16:03 DEBUG opendrift:2109: ======================================================================
18:16:03 INFO opendrift:2110: 2025-11-13 09:15:52.454745 - step 64 of 72 - 1000 active elements (0 deactivated)
18:16:03 DEBUG opendrift:2116: 0 elements scheduled.
18:16:03 DEBUG opendrift:2118: ======================================================================
18:16:03 DEBUG opendrift:2129: 59.9428053750675 <- latitude -> 60.053961515947776
18:16:03 DEBUG opendrift:2129: 3.875419606308951 <- longitude -> 4.140499500692527
18:16:03 DEBUG opendrift:2129: -55.845680459260215 <- z -> 0.0
18:16:03 DEBUG opendrift:2130: ---------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:16:03 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:16:03 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:03 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:16:03 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:03 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:16:03 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:16:03 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:16:03 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:16:03 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:03 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:03 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:16:03 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:16:03 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:03 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:16:03 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:03 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:16:03 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:03 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:03 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:16:03 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:16:03 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:16:03 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:16:03 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:16:03 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:16:03 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:16:03 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:16:03 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:16:03 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:03 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:16:03 DEBUG opendrift:696: No elements hit coastline.
18:16:03 DEBUG opendrift:1707: No elements to deactivate
18:16:03 DEBUG opendrift:2166: Calling OpenOil.update()
18:16:03 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:16:03 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:16:03 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
18:16:03 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:16:03 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:16:03 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:16:03 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:03 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:03 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:16:03 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:03 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:03 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:16:03 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:16:03 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:16:03 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:16:03 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:16:03 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:16:03 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:16:03 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:16:03 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:16:03 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:16:03 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.001858112780260192 and 0.2966621066566791 m/s
18:16:03 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:16:03 DEBUG opendrift:2109: ======================================================================
18:16:03 INFO opendrift:2110: 2025-11-13 10:15:52.454745 - step 65 of 72 - 1000 active elements (0 deactivated)
18:16:03 DEBUG opendrift:2116: 0 elements scheduled.
18:16:03 DEBUG opendrift:2118: ======================================================================
18:16:03 DEBUG opendrift:2129: 59.939316966744244 <- latitude -> 60.05961886624401
18:16:03 DEBUG opendrift:2129: 3.874886394836825 <- longitude -> 4.138701275243596
18:16:03 DEBUG opendrift:2129: -55.997440924459575 <- z -> 0.0
18:16:03 DEBUG opendrift:2130: ---------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:16:03 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:16:03 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:03 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:16:03 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:03 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:16:03 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:16:03 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:16:03 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:16:03 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:03 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:03 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:16:03 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:16:03 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:03 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:16:03 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:03 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:16:03 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:03 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:03 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:16:03 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:16:03 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:16:03 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:16:03 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:16:03 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:16:03 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:16:03 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:16:03 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:16:03 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:03 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:16:03 DEBUG opendrift:696: No elements hit coastline.
18:16:03 DEBUG opendrift:1707: No elements to deactivate
18:16:03 DEBUG opendrift:2166: Calling OpenOil.update()
18:16:03 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:16:03 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:16:03 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
18:16:03 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:16:03 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:16:03 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:16:03 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:03 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:03 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:16:03 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:03 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:03 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:16:03 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:16:03 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:16:03 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:16:03 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:16:03 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:16:03 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:16:03 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:16:03 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:16:03 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:16:03 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0052621564138150105 and 0.3506362914195378 m/s
18:16:03 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:16:03 DEBUG opendrift:2109: ======================================================================
18:16:03 INFO opendrift:2110: 2025-11-13 11:15:52.454745 - step 66 of 72 - 1000 active elements (0 deactivated)
18:16:03 DEBUG opendrift:2116: 0 elements scheduled.
18:16:03 DEBUG opendrift:2118: ======================================================================
18:16:03 DEBUG opendrift:2129: 59.93331288324318 <- latitude -> 60.06117929934075
18:16:03 DEBUG opendrift:2129: 3.8737532073966037 <- longitude -> 4.142852313255081
18:16:03 DEBUG opendrift:2129: -56.18453801858221 <- z -> 0.0
18:16:03 DEBUG opendrift:2130: ---------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:16:03 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:16:03 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:03 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:16:03 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:03 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:16:03 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:16:03 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:16:03 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:16:03 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:03 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:03 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:16:03 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:16:03 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:03 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:16:03 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:03 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:16:03 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:03 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:03 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:16:03 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:16:03 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:16:03 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:16:03 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:16:03 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:16:03 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:16:03 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:16:03 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:16:03 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:03 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:16:03 DEBUG opendrift:696: No elements hit coastline.
18:16:03 DEBUG opendrift:1707: No elements to deactivate
18:16:03 DEBUG opendrift:2166: Calling OpenOil.update()
18:16:03 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:16:03 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:16:03 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
18:16:03 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:16:03 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:16:03 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:16:03 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:03 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:03 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:16:03 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:03 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:03 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:16:03 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:16:03 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:16:03 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:16:03 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:16:03 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:16:03 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:16:03 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:16:03 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:16:03 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:16:03 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.003212913582357832 and 0.2509205667444445 m/s
18:16:03 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:16:03 DEBUG opendrift:2109: ======================================================================
18:16:03 INFO opendrift:2110: 2025-11-13 12:15:52.454745 - step 67 of 72 - 1000 active elements (0 deactivated)
18:16:03 DEBUG opendrift:2116: 0 elements scheduled.
18:16:03 DEBUG opendrift:2118: ======================================================================
18:16:03 DEBUG opendrift:2129: 59.935609474159506 <- latitude -> 60.0619617800801
18:16:03 DEBUG opendrift:2129: 3.873996713779816 <- longitude -> 4.139797609774419
18:16:03 DEBUG opendrift:2129: -56.06655409247274 <- z -> 0.0
18:16:03 DEBUG opendrift:2130: ---------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:16:03 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:16:03 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:03 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:16:03 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:03 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:16:03 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:16:03 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:16:03 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:16:03 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:03 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:03 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:16:03 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:16:03 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:03 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:16:03 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:03 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:16:03 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:03 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:03 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:16:03 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:16:03 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:16:03 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:16:03 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:16:03 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:16:03 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:16:03 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:16:03 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:16:03 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:03 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:16:03 DEBUG opendrift:696: No elements hit coastline.
18:16:03 DEBUG opendrift:1707: No elements to deactivate
18:16:03 DEBUG opendrift:2166: Calling OpenOil.update()
18:16:03 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:16:03 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:16:03 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
18:16:03 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:16:03 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:16:03 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:16:03 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:03 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:03 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:16:03 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:03 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:03 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:16:03 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:16:03 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:16:03 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:16:03 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:16:03 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:16:03 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:16:03 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:16:03 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:16:03 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:16:03 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0062745678240689684 and 0.29606592790166275 m/s
18:16:03 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:16:03 DEBUG opendrift:2109: ======================================================================
18:16:03 INFO opendrift:2110: 2025-11-13 13:15:52.454745 - step 68 of 72 - 1000 active elements (0 deactivated)
18:16:03 DEBUG opendrift:2116: 0 elements scheduled.
18:16:03 DEBUG opendrift:2118: ======================================================================
18:16:03 DEBUG opendrift:2129: 59.93597168912417 <- latitude -> 60.057843307700104
18:16:03 DEBUG opendrift:2129: 3.872856443676758 <- longitude -> 4.139230687543677
18:16:03 DEBUG opendrift:2129: -55.677279776468346 <- z -> 0.0
18:16:03 DEBUG opendrift:2130: ---------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:16:03 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:16:03 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:03 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:16:03 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:03 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:16:03 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:16:03 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:16:03 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:16:03 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:03 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:03 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:16:03 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:16:03 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:03 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:16:03 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:03 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:16:03 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:03 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:03 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:16:03 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:16:03 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:16:03 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:16:03 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:16:03 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:16:03 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:16:03 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:16:03 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:16:03 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:03 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:16:03 DEBUG opendrift:696: No elements hit coastline.
18:16:03 DEBUG opendrift:1707: No elements to deactivate
18:16:03 DEBUG opendrift:2166: Calling OpenOil.update()
18:16:03 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:16:03 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:16:03 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
18:16:03 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:16:03 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:16:03 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:16:03 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:03 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:03 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:16:03 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:03 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:03 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:16:03 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:16:03 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:16:03 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:16:03 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:16:03 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:16:03 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:16:03 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:16:03 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:16:03 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:16:03 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.003551649019788776 and 0.2855261245147178 m/s
18:16:03 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:16:03 DEBUG opendrift:2109: ======================================================================
18:16:03 INFO opendrift:2110: 2025-11-13 14:15:52.454745 - step 69 of 72 - 1000 active elements (0 deactivated)
18:16:03 DEBUG opendrift:2116: 0 elements scheduled.
18:16:03 DEBUG opendrift:2118: ======================================================================
18:16:03 DEBUG opendrift:2129: 59.93580861701858 <- latitude -> 60.056905672115164
18:16:03 DEBUG opendrift:2129: 3.8649850952904106 <- longitude -> 4.148407351421332
18:16:03 DEBUG opendrift:2129: -55.731104446874575 <- z -> 0.0
18:16:03 DEBUG opendrift:2130: ---------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:16:03 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:16:03 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:03 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:16:03 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:03 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:16:03 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:16:03 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:16:03 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:16:03 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:03 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:03 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:16:03 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:16:03 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:03 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:16:03 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:03 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:16:03 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:03 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:03 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:16:03 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:16:03 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:16:03 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:16:03 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:16:03 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:16:03 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:16:03 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:16:03 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:16:03 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:03 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:16:03 DEBUG opendrift:696: No elements hit coastline.
18:16:03 DEBUG opendrift:1707: No elements to deactivate
18:16:03 DEBUG opendrift:2166: Calling OpenOil.update()
18:16:03 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:16:03 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:16:03 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
18:16:03 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:16:03 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:16:03 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:16:03 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:03 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:03 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:16:03 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:03 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:03 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:16:03 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:16:03 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:16:03 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:16:03 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:16:03 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:16:03 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:16:03 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:16:03 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:16:03 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:16:03 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.007942977859339033 and 0.290253471472653 m/s
18:16:03 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:16:03 DEBUG opendrift:2109: ======================================================================
18:16:03 INFO opendrift:2110: 2025-11-13 15:15:52.454745 - step 70 of 72 - 1000 active elements (0 deactivated)
18:16:03 DEBUG opendrift:2116: 0 elements scheduled.
18:16:03 DEBUG opendrift:2118: ======================================================================
18:16:03 DEBUG opendrift:2129: 59.931422149621746 <- latitude -> 60.05568741672788
18:16:03 DEBUG opendrift:2129: 3.8561075156100926 <- longitude -> 4.144192541996627
18:16:03 DEBUG opendrift:2129: -55.585150435848774 <- z -> 0.0
18:16:03 DEBUG opendrift:2130: ---------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:16:03 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:16:03 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:03 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:16:03 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:03 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:16:03 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:16:03 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:16:03 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:16:03 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:03 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:03 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:16:03 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:16:03 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:03 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:16:03 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:03 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:16:03 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:03 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:03 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:16:03 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:16:03 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:16:03 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:16:03 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:16:03 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:16:03 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:16:03 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:16:03 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:16:03 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:16:03 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:16:03 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:03 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:16:03 DEBUG opendrift:696: No elements hit coastline.
18:16:03 DEBUG opendrift:1707: No elements to deactivate
18:16:03 DEBUG opendrift:2166: Calling OpenOil.update()
18:16:03 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:16:03 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:16:03 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
18:16:03 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:16:03 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:16:03 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:16:03 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:03 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:03 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:16:03 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:03 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:03 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:16:03 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:16:03 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:16:03 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:16:03 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:16:03 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:16:03 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:16:03 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:16:03 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:16:03 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:16:03 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0009084255812054989 and 0.24832514731044186 m/s
18:16:04 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:16:04 DEBUG opendrift:2109: ======================================================================
18:16:04 INFO opendrift:2110: 2025-11-13 16:15:52.454745 - step 71 of 72 - 1000 active elements (0 deactivated)
18:16:04 DEBUG opendrift:2116: 0 elements scheduled.
18:16:04 DEBUG opendrift:2118: ======================================================================
18:16:04 DEBUG opendrift:2129: 59.932621524134404 <- latitude -> 60.058379537997936
18:16:04 DEBUG opendrift:2129: 3.8608397455519037 <- longitude -> 4.152738755257055
18:16:04 DEBUG opendrift:2129: -55.94488350503279 <- z -> 0.0
18:16:04 DEBUG opendrift:2130: ---------------------------------
18:16:04 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:04 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:16:04 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:04 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:16:04 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:04 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:04 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:16:04 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:04 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:16:04 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:16:04 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:16:04 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:16:04 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:04 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:04 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:04 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:16:04 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:04 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:16:04 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:04 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:04 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:16:04 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:04 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:16:04 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:04 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:04 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:16:04 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:16:04 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:16:04 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:16:04 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:16:04 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:16:04 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:16:04 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:16:04 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:16:04 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:16:04 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:16:04 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:16:04 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:16:04 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:16:04 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:16:04 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:16:04 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:16:04 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:16:04 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:16:04 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:16:04 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:16:04 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:16:04 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:16:04 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:16:04 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:16:04 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:16:04 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:16:04 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:16:04 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:16:04 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:04 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:16:04 DEBUG opendrift:696: No elements hit coastline.
18:16:04 DEBUG opendrift:1707: No elements to deactivate
18:16:04 DEBUG opendrift:2166: Calling OpenOil.update()
18:16:04 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:16:04 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:16:04 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
18:16:04 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:16:04 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:16:04 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:16:04 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:04 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:04 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:16:04 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:04 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:04 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:16:04 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:16:04 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:16:04 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:16:04 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:16:04 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:16:04 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:16:04 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:16:04 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:16:04 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:16:04 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.003734647863041959 and 0.25379930575195786 m/s
18:16:04 DEBUG opendrift:909: to be seeded: 0, already seeded 1000
18:16:04 DEBUG opendrift:2109: ======================================================================
18:16:04 INFO opendrift:2110: 2025-11-13 17:15:52.454745 - step 72 of 72 - 1000 active elements (0 deactivated)
18:16:04 DEBUG opendrift:2116: 0 elements scheduled.
18:16:04 DEBUG opendrift:2118: ======================================================================
18:16:04 DEBUG opendrift:2129: 59.93033644036054 <- latitude -> 60.05580588768059
18:16:04 DEBUG opendrift:2129: 3.8512436388661255 <- longitude -> 4.151503364713603
18:16:04 DEBUG opendrift:2129: -56.19892765103577 <- z -> 0.0
18:16:04 DEBUG opendrift:2130: ---------------------------------
18:16:04 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:04 DEBUG opendrift.models.basemodel.environment:597: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity', 'x_wind', 'y_wind']
18:16:04 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:04 DEBUG opendrift.models.basemodel.environment:602: Calling reader constant_reader
18:16:04 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:04 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:04 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 1000 elements
18:16:04 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:04 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
18:16:04 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
18:16:04 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
18:16:04 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
18:16:04 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:04 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:04 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:04 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:16:04 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:04 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:16:04 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:04 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:04 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:16:04 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:04 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:16:04 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:04 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:04 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:16:04 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:16:04 DEBUG opendrift.models.basemodel.environment:790: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
18:16:04 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 10 for sea_water_temperature for all profiles
18:16:04 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 34 for sea_water_salinity for all profiles
18:16:04 DEBUG opendrift.models.basemodel.environment:795: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
18:16:04 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:16:04 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0 (min) 0 (max)
18:16:04 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0 (min) 0 (max)
18:16:04 DEBUG opendrift.models.basemodel.environment:894: x_wind: 0 (min) 0 (max)
18:16:04 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0 (min) 0 (max)
18:16:04 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: 0 (min) 0 (max)
18:16:04 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
18:16:04 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
18:16:04 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
18:16:04 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
18:16:04 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
18:16:04 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
18:16:04 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
18:16:04 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
18:16:04 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 10 (min) 10 (max)
18:16:04 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34 (min) 34 (max)
18:16:04 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
18:16:04 DEBUG opendrift.models.basemodel.environment:894: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
18:16:04 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:16:04 DEBUG opendrift.models.basemodel.environment:894: ocean_mixed_layer_thickness: 50 (min) 50 (max)
18:16:04 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:16:04 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
18:16:04 DEBUG opendrift.models.physics_methods:880: Calculating wave period Tm02 from wind
18:16:04 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:04 DEBUG opendrift.models.physics_methods:830: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
18:16:04 DEBUG opendrift:696: No elements hit coastline.
18:16:04 DEBUG opendrift:1707: No elements to deactivate
18:16:04 DEBUG opendrift:2166: Calling OpenOil.update()
18:16:04 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
18:16:04 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
18:16:04 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
18:16:04 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
18:16:04 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
18:16:04 DEBUG opendrift.models.openoil.openoil:788: Calculating: dispersion - NOAA
18:16:04 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:04 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:04 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
18:16:04 DEBUG opendrift.models.physics_methods:872: Using mean period Tm02 as wave period
18:16:04 DEBUG opendrift.models.physics_methods:890: min: 1.256637, mean: 1.256637, max: 1.256637
18:16:04 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
/root/project/opendrift/models/openoil/openoil.py:1142: RuntimeWarning: divide by zero encountered in power
dN_50 = (A * self.elements.oil_film_thickness * we**-0.6) + (
/root/project/opendrift/models/openoil/openoil.py:1143: RuntimeWarning: divide by zero encountered in power
B * self.elements.oil_film_thickness * re**-0.6)
18:16:04 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: inf, dN_50: inf
/root/project/opendrift/models/openoil/openoil.py:1160: RuntimeWarning: invalid value encountered in divide
self.droplet_spectrum_pdf = spectrum / np.sum(spectrum)
18:16:04 WARNING opendrift.models.openoil.openoil:1163: Could not update droplet diameters.
18:16:04 DEBUG opendrift.models.oceandrift:441: Using diffusivity from Large1994 since model diffusivities not available
18:16:04 DEBUG opendrift.models.oceandrift:455: Diffusivities are in range 0.0 to 1.2e-05
18:16:04 DEBUG opendrift.models.oceandrift:474: TSprofiles deactivated for vertical mixing
18:16:04 DEBUG opendrift.models.oceandrift:488: Vertical mixing module:environment
18:16:04 DEBUG opendrift.models.oceandrift:491: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60.0s
18:16:04 DEBUG opendrift.models.physics_methods:734: No wind for wind-sheared ocean drift
18:16:04 DEBUG opendrift.models.physics_methods:762: No Stokes drift velocity available
18:16:04 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0013743073228135803 and 0.2509683781370698 m/s
18:16:04 DEBUG opendrift:2204: Cleaning up
18:16:04 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
18:16:04 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
18:16:04 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
18:16:04 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
18:16:04 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
18:16:04 DEBUG opendrift.models.basemodel.environment:620: Data needed for 1000 elements
18:16:04 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 1000 elements
18:16:04 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
18:16:04 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
18:16:04 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
18:16:04 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
18:16:04 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
18:16:04 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
18:16:04 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
18:16:04 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
18:16:04 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
18:16:04 DEBUG opendrift:696: No elements hit coastline.
18:16:04 DEBUG opendrift:2291: Updating minval and maxval
18:16:04 DEBUG opendrift:2371: Writing to file
18:16:04 DEBUG opendrift:1707: No elements to deactivate
18:16:04 DEBUG opendrift:164: Changed mode from Mode.Run to Mode.Result
Plot results
o.plot_oil_budget(show_watercontent_and_viscosity=False, show_wind_and_current=False)

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

Animation of vertical behaviour
o.animation_profile(markersize='mass_oil', markersize_scaling=50, color='z', alpha=.5)
18:16:04 DEBUG opendrift:3087: Saving animation..
18:16:04 INFO opendrift:4645: Saving animation to /root/project/docs/source/gallery/animations/example_biodegradation_0.gif...
18:16:15 DEBUG opendrift:4683: MPLBACKEND = agg
18:16:15 DEBUG opendrift:4684: DISPLAY = None
18:16:15 DEBUG opendrift:4685: Time to save animation: 0:00:10.989717
18:16:15 INFO opendrift:3296: Time to make animation: 0:00:11.169219
Total running time of the script: (0 minutes 29.417 seconds)