Note
Go to the end to download the full example code.
Analysing huge output files
import os
from datetime import datetime, timedelta
import opendrift
from opendrift.models.oceandrift import OceanDrift
from opendrift.readers import reader_oscillating
First make a simulation with two seedings, marked by origin_marker
o = OceanDrift(loglevel=10)
o.set_config('drift:horizontal_diffusivity', 10)
t1 = datetime.now()
t2 = t1 + timedelta(hours=6)
number = 10000
outfile = 'simulation.nc' # Raw simulation output
reader_x = reader_oscillating.Reader('x_sea_water_velocity',
amplitude=1, zero_time=t1)
reader_y = reader_oscillating.Reader('y_sea_water_velocity',
amplitude=1, zero_time=t2)
o.add_reader([reader_x, reader_y])
o.seed_elements(time=t1, lon=4, lat=60, number=number,
origin_marker=0)
o.seed_elements(time=[t1, t2], lon=4.2, lat=60.4, number=number,
origin_marker=1)
o.run(duration=timedelta(hours=24),
time_step=900, time_step_output=1800, outfile=outfile)
14:20:04 DEBUG opendrift.config:168: Adding 18 config items from __init__
14:20:04 DEBUG opendrift.config:178: Overwriting config item readers:max_number_of_fails
14:20:04 DEBUG opendrift.config:168: Adding 5 config items from __init__
14:20:04 INFO opendrift:509: OpenDriftSimulation initialised (version 1.13.0 / v1.13.0-75-gd4c13d2)
14:20:04 DEBUG opendrift.config:168: Adding 15 config items from oceandrift
14:20:04 DEBUG opendrift.config:178: Overwriting config item seed:z
14:20:04 DEBUG opendrift.readers.basereader:186: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated
14:20:04 DEBUG opendrift.readers.basereader:186: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated
14:20:04 DEBUG opendrift.models.basemodel.environment:316: Added reader oscillating_reader
14:20:04 DEBUG opendrift.models.basemodel.environment:316: Added reader oscillating_reader_0
14:20:04 INFO opendrift.models.basemodel.environment:206: Adding a dynamical landmask with max. priority based on assumed maximum speed of 2.0 m/s. Adding a customised landmask may be faster...
14:20:04 DEBUG opendrift.readers.basereader:186: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated
14:20:08 DEBUG opendrift.models.basemodel.environment:316: Added reader global_landmask
14:20:08 INFO opendrift.models.basemodel.environment:233: Fallback values will be used for the following variables which have no readers:
14:20:08 INFO opendrift.models.basemodel.environment:236: sea_surface_height: 0.000000
14:20:08 INFO opendrift.models.basemodel.environment:236: x_wind: 0.000000
14:20:08 INFO opendrift.models.basemodel.environment:236: y_wind: 0.000000
14:20:08 INFO opendrift.models.basemodel.environment:236: upward_sea_water_velocity: 0.000000
14:20:08 INFO opendrift.models.basemodel.environment:236: ocean_vertical_diffusivity: 0.000000
14:20:08 INFO opendrift.models.basemodel.environment:236: sea_surface_wave_significant_height: 0.000000
14:20:08 INFO opendrift.models.basemodel.environment:236: sea_surface_wave_stokes_drift_x_velocity: 0.000000
14:20:08 INFO opendrift.models.basemodel.environment:236: sea_surface_wave_stokes_drift_y_velocity: 0.000000
14:20:08 INFO opendrift.models.basemodel.environment:236: sea_surface_wave_period_at_variance_spectral_density_maximum: 0.000000
14:20:08 INFO opendrift.models.basemodel.environment:236: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0.000000
14:20:08 INFO opendrift.models.basemodel.environment:236: sea_surface_swell_wave_to_direction: 0.000000
14:20:08 INFO opendrift.models.basemodel.environment:236: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0.000000
14:20:08 INFO opendrift.models.basemodel.environment:236: sea_surface_swell_wave_significant_height: 0.000000
14:20:08 INFO opendrift.models.basemodel.environment:236: sea_surface_wind_wave_to_direction: 0.000000
14:20:08 INFO opendrift.models.basemodel.environment:236: sea_surface_wind_wave_mean_period: 0.000000
14:20:08 INFO opendrift.models.basemodel.environment:236: sea_surface_wind_wave_significant_height: 0.000000
14:20:08 INFO opendrift.models.basemodel.environment:236: surface_downward_x_stress: 0.000000
14:20:08 INFO opendrift.models.basemodel.environment:236: surface_downward_y_stress: 0.000000
14:20:08 INFO opendrift.models.basemodel.environment:236: turbulent_kinetic_energy: 0.000000
14:20:08 INFO opendrift.models.basemodel.environment:236: turbulent_generic_length_scale: 0.000000
14:20:08 INFO opendrift.models.basemodel.environment:236: ocean_mixed_layer_thickness: 50.000000
14:20:08 INFO opendrift.models.basemodel.environment:236: sea_floor_depth_below_sea_level: 10000.000000
14:20:08 DEBUG opendrift:100: Changed mode from Mode.Config to Mode.Ready
14:20:08 DEBUG opendrift:100: Changed mode from Mode.Ready to Mode.Run
14:20:08 DEBUG opendrift:1763:
------------------------------------------------------
Software and hardware:
OpenDrift version 1.13.0
Platform: Linux, 5.15.0-1077-aws
69.05978012084961 GB memory
36 processors (x86_64)
NumPy version 1.26.4
SciPy version 1.15.2
Matplotlib version 3.9.1
NetCDF4 version 1.6.1
Xarray version 2025.1.2
ADIOS (adios_db) version 1.2.5
Copernicusmarine version 2.0.1
Python version 3.11.6 | packaged by conda-forge | (main, Oct 3 2023, 10:40:35) [GCC 12.3.0]
------------------------------------------------------
14:20:08 DEBUG opendrift:1895: Finalizing environment and preparing readers for simulation coverage ([0.867528152821913, 58.443243243243245, 7.332471656443223, 61.95675828263566]) and time (2025-03-13 14:20:04.288590 to 2025-03-14 14:20:04.288590)
14:20:08 DEBUG opendrift.models.basemodel.environment:168: Preparing oscillating_reader for extent [0.867528152821913, 58.443243243243245, 7.332471656443223, 61.95675828263566]
14:20:08 DEBUG opendrift.readers.basereader.variables:553: Nothing more to prepare for oscillating_reader
14:20:08 DEBUG opendrift.models.basemodel.environment:168: Preparing oscillating_reader_0 for extent [0.867528152821913, 58.443243243243245, 7.332471656443223, 61.95675828263566]
14:20:08 DEBUG opendrift.readers.basereader.variables:553: Nothing more to prepare for oscillating_reader_0
14:20:08 DEBUG opendrift.models.basemodel.environment:168: Preparing global_landmask for extent [0.867528152821913, 58.443243243243245, 7.332471656443223, 61.95675828263566]
14:20:08 DEBUG opendrift.readers.basereader.variables:553: Nothing more to prepare for global_landmask
14:20:08 DEBUG opendrift:1982: Initial self.result, size Frozen({'trajectory': 20000, 'time': 49})
14:20:08 DEBUG opendrift.export.io_netcdf:24: Initialising output netCDF file {self.outfile_name}
14:20:08 INFO opendrift:919: Using existing reader for land_binary_mask
14:20:08 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:08 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:08 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:08 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:08 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:08 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:08 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 20000 elements
14:20:08 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:08 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:08 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:08 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:08 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:08 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:08 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:08 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:08 INFO opendrift:930: All points are in ocean
14:20:08 DEBUG opendrift:874: to be seeded: 20000, already seeded 0
14:20:08 DEBUG opendrift:892: Released 10417 new elements.
14:20:08 DEBUG opendrift:2055: ======================================================================
14:20:08 INFO opendrift:2056: 2025-03-13 14:20:04.288590 - step 1 of 96 - 10417 active elements (0 deactivated)
14:20:08 DEBUG opendrift:2062: 9583 elements scheduled.
14:20:08 DEBUG opendrift:2064: ======================================================================
14:20:08 DEBUG opendrift:2075: 60.0 <- latitude -> 60.4
14:20:08 DEBUG opendrift:2080: 4.0 <- longitude -> 4.2
14:20:08 DEBUG opendrift:2083: z = 0.0
14:20:08 DEBUG opendrift:2086: ---------------------------------
14:20:08 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:08 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:08 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:08 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:08 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:08 DEBUG opendrift.models.basemodel.environment:618: Data needed for 10417 elements
14:20:08 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 10417 elements
14:20:08 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:08 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:08 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:08 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:08 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:08 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:08 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:08 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:08 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:08 DEBUG opendrift.models.basemodel.environment:618: Data needed for 10417 elements
14:20:08 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 10417 elements
14:20:08 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:08 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:08 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:08 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:08 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:08 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:08 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:08 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:08 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:08 DEBUG opendrift.models.basemodel.environment:618: Data needed for 10417 elements
14:20:08 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 10417 elements
14:20:08 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:08 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:08 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:08 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:08 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:08 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:08 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:08 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:08 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:08 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: -0.707107 (min) -0.707107 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:08 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:08 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:08 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:08 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:08 DEBUG opendrift:643: No elements hit coastline.
14:20:08 DEBUG opendrift:1695: No elements to deactivate
14:20:08 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:08 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:08 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:08 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:08 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0004783844377588917 and 0.6708176047456992 m/s
14:20:08 DEBUG opendrift:2144: 10417 active elements (0 deactivated)
14:20:08 DEBUG opendrift:874: to be seeded: 9583, already seeded 10417
14:20:08 DEBUG opendrift:892: Released 417 new elements.
14:20:08 DEBUG opendrift:2055: ======================================================================
14:20:08 INFO opendrift:2056: 2025-03-13 14:35:04.288590 - step 2 of 96 - 10834 active elements (0 deactivated)
14:20:08 DEBUG opendrift:2062: 9166 elements scheduled.
14:20:08 DEBUG opendrift:2064: ======================================================================
14:20:08 DEBUG opendrift:2075: 59.9889332079791 <- latitude -> 60.400001525878906
14:20:08 DEBUG opendrift:2080: 3.991009050284454 <- longitude -> 4.207835745653981
14:20:08 DEBUG opendrift:2083: z = 0.0
14:20:08 DEBUG opendrift:2086: ---------------------------------
14:20:08 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:08 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:08 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:08 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:08 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:08 DEBUG opendrift.models.basemodel.environment:618: Data needed for 10834 elements
14:20:08 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 10834 elements
14:20:08 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:08 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:08 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:08 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:08 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:08 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:08 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:08 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:08 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:08 DEBUG opendrift.models.basemodel.environment:618: Data needed for 10834 elements
14:20:08 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 10834 elements
14:20:08 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:08 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:08 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:08 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:08 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:08 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:08 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:08 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:08 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:08 DEBUG opendrift.models.basemodel.environment:618: Data needed for 10834 elements
14:20:08 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 10834 elements
14:20:08 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:08 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:08 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:08 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:08 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:08 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:08 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:08 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:08 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:08 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.0327191 (min) 0.0327191 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: -0.683592 (min) -0.683592 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:08 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:08 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:08 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:08 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:08 DEBUG opendrift:643: No elements hit coastline.
14:20:08 DEBUG opendrift:1695: No elements to deactivate
14:20:08 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:08 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:08 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:08 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:08 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0024255923287307634 and 0.6978153828635182 m/s
14:20:08 DEBUG opendrift:2144: 10834 active elements (0 deactivated)
14:20:08 DEBUG opendrift:874: to be seeded: 9166, already seeded 10834
14:20:08 DEBUG opendrift:892: Released 416 new elements.
14:20:08 DEBUG opendrift:2055: ======================================================================
14:20:08 INFO opendrift:2056: 2025-03-13 14:50:04.288590 - step 3 of 96 - 11250 active elements (0 deactivated)
14:20:08 DEBUG opendrift:2062: 8750 elements scheduled.
14:20:08 DEBUG opendrift:2064: ======================================================================
14:20:08 DEBUG opendrift:2075: 59.981829612948175 <- latitude -> 60.400001525878906
14:20:08 DEBUG opendrift:2080: 3.986598282230568 <- longitude -> 4.210790500351989
14:20:08 DEBUG opendrift:2083: z = 0.0
14:20:08 DEBUG opendrift:2086: ---------------------------------
14:20:08 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:08 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:08 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:08 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:08 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:08 DEBUG opendrift.models.basemodel.environment:618: Data needed for 11250 elements
14:20:08 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 11250 elements
14:20:08 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:08 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:08 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:08 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:08 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:08 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:08 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:08 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:08 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:08 DEBUG opendrift.models.basemodel.environment:618: Data needed for 11250 elements
14:20:08 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 11250 elements
14:20:08 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:08 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:08 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:08 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:08 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:08 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:08 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:08 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:08 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:08 DEBUG opendrift.models.basemodel.environment:618: Data needed for 11250 elements
14:20:08 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 11250 elements
14:20:08 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:08 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:08 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:08 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:08 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:08 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:08 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:08 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:08 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:08 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.0654031 (min) 0.0654031 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: -0.659346 (min) -0.659346 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:08 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:09 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:09 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:09 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:09 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:09 DEBUG opendrift:643: No elements hit coastline.
14:20:09 DEBUG opendrift:1695: No elements to deactivate
14:20:09 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:09 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:09 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:09 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:09 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0005759790513010039 and 0.7233143349503885 m/s
14:20:09 DEBUG opendrift:2144: 11250 active elements (0 deactivated)
14:20:09 DEBUG opendrift:874: to be seeded: 8750, already seeded 11250
14:20:09 DEBUG opendrift:892: Released 417 new elements.
14:20:09 DEBUG opendrift:2055: ======================================================================
14:20:09 INFO opendrift:2056: 2025-03-13 15:05:04.288590 - step 4 of 96 - 11667 active elements (0 deactivated)
14:20:09 DEBUG opendrift:2062: 8333 elements scheduled.
14:20:09 DEBUG opendrift:2064: ======================================================================
14:20:09 DEBUG opendrift:2075: 59.97571316646061 <- latitude -> 60.400001525878906
14:20:09 DEBUG opendrift:2080: 3.9863026041445324 <- longitude -> 4.218286740994068
14:20:09 DEBUG opendrift:2083: z = 0.0
14:20:09 DEBUG opendrift:2086: ---------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:09 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:09 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:618: Data needed for 11667 elements
14:20:09 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 11667 elements
14:20:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:09 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:09 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:09 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:09 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:09 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:09 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:618: Data needed for 11667 elements
14:20:09 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 11667 elements
14:20:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:09 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:09 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:09 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:09 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:09 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:09 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:618: Data needed for 11667 elements
14:20:09 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 11667 elements
14:20:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:09 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:09 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:09 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:09 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:09 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:09 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:09 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:09 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.0980171 (min) 0.0980171 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: -0.634393 (min) -0.634393 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:09 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:09 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:09 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:09 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:09 DEBUG opendrift:643: No elements hit coastline.
14:20:09 DEBUG opendrift:1695: No elements to deactivate
14:20:09 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:09 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:09 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:09 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:09 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0036481103053630963 and 0.6646006747283487 m/s
14:20:09 DEBUG opendrift:2144: 11667 active elements (0 deactivated)
14:20:09 DEBUG opendrift:874: to be seeded: 8333, already seeded 11667
14:20:09 DEBUG opendrift:892: Released 417 new elements.
14:20:09 DEBUG opendrift:2055: ======================================================================
14:20:09 INFO opendrift:2056: 2025-03-13 15:20:04.288590 - step 5 of 96 - 12084 active elements (0 deactivated)
14:20:09 DEBUG opendrift:2062: 7916 elements scheduled.
14:20:09 DEBUG opendrift:2064: ======================================================================
14:20:09 DEBUG opendrift:2075: 59.969656648486364 <- latitude -> 60.400001525878906
14:20:09 DEBUG opendrift:2080: 3.9865698374525977 <- longitude -> 4.2202278399117175
14:20:09 DEBUG opendrift:2083: z = 0.0
14:20:09 DEBUG opendrift:2086: ---------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:09 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:09 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:618: Data needed for 12084 elements
14:20:09 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 12084 elements
14:20:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:09 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:09 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:09 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:09 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:09 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:09 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:618: Data needed for 12084 elements
14:20:09 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 12084 elements
14:20:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:09 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:09 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:09 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:09 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:09 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:09 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:618: Data needed for 12084 elements
14:20:09 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 12084 elements
14:20:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:09 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:09 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:09 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:09 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:09 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:09 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:09 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:09 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.130526 (min) 0.130526 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: -0.608761 (min) -0.608761 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:09 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:09 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:09 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:09 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:09 DEBUG opendrift:643: No elements hit coastline.
14:20:09 DEBUG opendrift:1695: No elements to deactivate
14:20:09 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:09 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:09 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:09 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:09 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0020626844287717425 and 0.6570493443891587 m/s
14:20:09 DEBUG opendrift:2144: 12084 active elements (0 deactivated)
14:20:09 DEBUG opendrift:874: to be seeded: 7916, already seeded 12084
14:20:09 DEBUG opendrift:892: Released 416 new elements.
14:20:09 DEBUG opendrift:2055: ======================================================================
14:20:09 INFO opendrift:2056: 2025-03-13 15:35:04.288590 - step 6 of 96 - 12500 active elements (0 deactivated)
14:20:09 DEBUG opendrift:2062: 7500 elements scheduled.
14:20:09 DEBUG opendrift:2064: ======================================================================
14:20:09 DEBUG opendrift:2075: 59.961566125830345 <- latitude -> 60.400001525878906
14:20:09 DEBUG opendrift:2080: 3.9852073947532665 <- longitude -> 4.225880754288531
14:20:09 DEBUG opendrift:2083: z = 0.0
14:20:09 DEBUG opendrift:2086: ---------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:09 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:09 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:618: Data needed for 12500 elements
14:20:09 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 12500 elements
14:20:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:09 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:09 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:09 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:09 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:09 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:09 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:618: Data needed for 12500 elements
14:20:09 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 12500 elements
14:20:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:09 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:09 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:09 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:09 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:09 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:09 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:618: Data needed for 12500 elements
14:20:09 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 12500 elements
14:20:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:09 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:09 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:09 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:09 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:09 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:09 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:09 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:09 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.162895 (min) 0.162895 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: -0.582478 (min) -0.582478 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:09 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:09 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:09 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:09 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:09 DEBUG opendrift:643: No elements hit coastline.
14:20:09 DEBUG opendrift:1695: No elements to deactivate
14:20:09 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:09 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:09 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:09 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:09 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0001716675067009026 and 0.6528664837575173 m/s
14:20:09 DEBUG opendrift:2144: 12500 active elements (0 deactivated)
14:20:09 DEBUG opendrift:874: to be seeded: 7500, already seeded 12500
14:20:09 DEBUG opendrift:892: Released 417 new elements.
14:20:09 DEBUG opendrift:2055: ======================================================================
14:20:09 INFO opendrift:2056: 2025-03-13 15:50:04.288590 - step 7 of 96 - 12917 active elements (0 deactivated)
14:20:09 DEBUG opendrift:2062: 7083 elements scheduled.
14:20:09 DEBUG opendrift:2064: ======================================================================
14:20:09 DEBUG opendrift:2075: 59.95676596243278 <- latitude -> 60.400001525878906
14:20:09 DEBUG opendrift:2080: 3.987916760606951 <- longitude -> 4.224310323037573
14:20:09 DEBUG opendrift:2083: z = 0.0
14:20:09 DEBUG opendrift:2086: ---------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:09 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:09 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:618: Data needed for 12917 elements
14:20:09 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 12917 elements
14:20:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:09 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:09 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:09 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:09 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:09 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:09 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:618: Data needed for 12917 elements
14:20:09 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 12917 elements
14:20:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:09 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:09 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:09 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:09 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:09 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:09 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:618: Data needed for 12917 elements
14:20:09 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 12917 elements
14:20:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:09 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:09 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:09 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:09 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:09 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:09 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:09 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:09 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.19509 (min) 0.19509 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: -0.55557 (min) -0.55557 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:09 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:09 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:09 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:09 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:09 DEBUG opendrift:643: No elements hit coastline.
14:20:09 DEBUG opendrift:1695: No elements to deactivate
14:20:09 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:09 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:09 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:09 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:09 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0006925187291057659 and 0.6399626248197438 m/s
14:20:09 DEBUG opendrift:2144: 12917 active elements (0 deactivated)
14:20:09 DEBUG opendrift:874: to be seeded: 7083, already seeded 12917
14:20:09 DEBUG opendrift:892: Released 417 new elements.
14:20:09 DEBUG opendrift:2055: ======================================================================
14:20:09 INFO opendrift:2056: 2025-03-13 16:05:04.288590 - step 8 of 96 - 13334 active elements (0 deactivated)
14:20:09 DEBUG opendrift:2062: 6666 elements scheduled.
14:20:09 DEBUG opendrift:2064: ======================================================================
14:20:09 DEBUG opendrift:2075: 59.95271153497444 <- latitude -> 60.400001525878906
14:20:09 DEBUG opendrift:2080: 3.9901638236744374 <- longitude -> 4.23131859555145
14:20:09 DEBUG opendrift:2083: z = 0.0
14:20:09 DEBUG opendrift:2086: ---------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:09 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:09 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:618: Data needed for 13334 elements
14:20:09 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 13334 elements
14:20:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:09 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:09 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:09 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:09 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:09 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:09 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:618: Data needed for 13334 elements
14:20:09 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 13334 elements
14:20:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:09 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:09 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:09 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:09 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:09 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:09 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:618: Data needed for 13334 elements
14:20:09 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 13334 elements
14:20:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:09 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:09 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:09 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:09 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:09 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:09 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:09 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:09 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.227076 (min) 0.227076 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: -0.528068 (min) -0.528068 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:09 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:09 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:09 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:09 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:09 DEBUG opendrift:643: No elements hit coastline.
14:20:09 DEBUG opendrift:1695: No elements to deactivate
14:20:09 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:09 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:09 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:09 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:09 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0019837497791843515 and 0.7116543008246453 m/s
14:20:09 DEBUG opendrift:2144: 13334 active elements (0 deactivated)
14:20:09 DEBUG opendrift:874: to be seeded: 6666, already seeded 13334
14:20:09 DEBUG opendrift:892: Released 416 new elements.
14:20:09 DEBUG opendrift:2055: ======================================================================
14:20:09 INFO opendrift:2056: 2025-03-13 16:20:04.288590 - step 9 of 96 - 13750 active elements (0 deactivated)
14:20:09 DEBUG opendrift:2062: 6250 elements scheduled.
14:20:09 DEBUG opendrift:2064: ======================================================================
14:20:09 DEBUG opendrift:2075: 59.94750759737051 <- latitude -> 60.400001525878906
14:20:09 DEBUG opendrift:2080: 3.9909230442022503 <- longitude -> 4.236394815105288
14:20:09 DEBUG opendrift:2083: z = 0.0
14:20:09 DEBUG opendrift:2086: ---------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:09 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:09 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:618: Data needed for 13750 elements
14:20:09 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 13750 elements
14:20:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:09 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:09 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:09 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:09 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:09 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:09 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:618: Data needed for 13750 elements
14:20:09 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 13750 elements
14:20:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:09 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:09 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:09 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:09 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:09 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:09 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:618: Data needed for 13750 elements
14:20:09 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 13750 elements
14:20:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:09 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:09 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:09 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:09 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:09 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:09 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:09 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:09 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.258819 (min) 0.258819 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: -0.5 (min) -0.5 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:09 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:09 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:09 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:09 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:09 DEBUG opendrift:643: No elements hit coastline.
14:20:09 DEBUG opendrift:1695: No elements to deactivate
14:20:09 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:09 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:09 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:09 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:09 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0013470725761360893 and 0.618411477222436 m/s
14:20:09 DEBUG opendrift:2144: 13750 active elements (0 deactivated)
14:20:09 DEBUG opendrift:874: to be seeded: 6250, already seeded 13750
14:20:09 DEBUG opendrift:892: Released 417 new elements.
14:20:09 DEBUG opendrift:2055: ======================================================================
14:20:09 INFO opendrift:2056: 2025-03-13 16:35:04.288590 - step 10 of 96 - 14167 active elements (0 deactivated)
14:20:09 DEBUG opendrift:2062: 5833 elements scheduled.
14:20:09 DEBUG opendrift:2064: ======================================================================
14:20:09 DEBUG opendrift:2075: 59.94196782943896 <- latitude -> 60.400001525878906
14:20:09 DEBUG opendrift:2080: 3.9934962984158147 <- longitude -> 4.239614967299774
14:20:09 DEBUG opendrift:2083: z = 0.0
14:20:09 DEBUG opendrift:2086: ---------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:09 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:09 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:618: Data needed for 14167 elements
14:20:09 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 14167 elements
14:20:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:09 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:09 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:09 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:09 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:09 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:09 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:618: Data needed for 14167 elements
14:20:09 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 14167 elements
14:20:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:09 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:09 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:09 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:09 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:09 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:09 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:618: Data needed for 14167 elements
14:20:09 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 14167 elements
14:20:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:09 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:09 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:09 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:09 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:09 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:09 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:09 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:09 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.290285 (min) 0.290285 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: -0.471397 (min) -0.471397 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:09 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:09 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:09 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:09 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:09 DEBUG opendrift:643: No elements hit coastline.
14:20:09 DEBUG opendrift:1695: No elements to deactivate
14:20:09 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:09 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:09 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:09 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:09 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0012777836943165392 and 0.6133511246127163 m/s
14:20:09 DEBUG opendrift:2144: 14167 active elements (0 deactivated)
14:20:09 DEBUG opendrift:874: to be seeded: 5833, already seeded 14167
14:20:09 DEBUG opendrift:892: Released 416 new elements.
14:20:09 DEBUG opendrift:2055: ======================================================================
14:20:09 INFO opendrift:2056: 2025-03-13 16:50:04.288590 - step 11 of 96 - 14583 active elements (0 deactivated)
14:20:09 DEBUG opendrift:2062: 5417 elements scheduled.
14:20:09 DEBUG opendrift:2064: ======================================================================
14:20:09 DEBUG opendrift:2075: 59.93764986150843 <- latitude -> 60.400001525878906
14:20:09 DEBUG opendrift:2080: 3.9951272394293924 <- longitude -> 4.247002134180506
14:20:09 DEBUG opendrift:2083: z = 0.0
14:20:09 DEBUG opendrift:2086: ---------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:09 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:09 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:618: Data needed for 14583 elements
14:20:09 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 14583 elements
14:20:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:09 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:09 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:09 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:09 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:09 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:09 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:618: Data needed for 14583 elements
14:20:09 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 14583 elements
14:20:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:09 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:09 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:09 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:09 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:09 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:09 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:618: Data needed for 14583 elements
14:20:09 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 14583 elements
14:20:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:09 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:09 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:09 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:09 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:09 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:09 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:09 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:09 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.321439 (min) 0.321439 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: -0.442289 (min) -0.442289 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:09 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:09 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:09 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:09 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:09 DEBUG opendrift:643: No elements hit coastline.
14:20:09 DEBUG opendrift:1695: No elements to deactivate
14:20:09 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:09 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:09 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:09 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:09 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0012446753818979822 and 0.654562649378931 m/s
14:20:09 DEBUG opendrift:2144: 14583 active elements (0 deactivated)
14:20:09 DEBUG opendrift:874: to be seeded: 5417, already seeded 14583
14:20:09 DEBUG opendrift:892: Released 417 new elements.
14:20:09 DEBUG opendrift:2055: ======================================================================
14:20:09 INFO opendrift:2056: 2025-03-13 17:05:04.288590 - step 12 of 96 - 15000 active elements (0 deactivated)
14:20:09 DEBUG opendrift:2062: 5000 elements scheduled.
14:20:09 DEBUG opendrift:2064: ======================================================================
14:20:09 DEBUG opendrift:2075: 59.933705272770865 <- latitude -> 60.40013310701376
14:20:09 DEBUG opendrift:2080: 3.9988728498540937 <- longitude -> 4.252692090534848
14:20:09 DEBUG opendrift:2083: z = 0.0
14:20:09 DEBUG opendrift:2086: ---------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:09 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:09 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:618: Data needed for 15000 elements
14:20:09 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 15000 elements
14:20:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:09 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:09 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:09 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:09 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:09 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:09 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:618: Data needed for 15000 elements
14:20:09 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 15000 elements
14:20:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:09 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:09 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:09 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:09 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:09 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:09 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:618: Data needed for 15000 elements
14:20:09 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 15000 elements
14:20:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:09 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:09 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:09 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:09 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:09 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:09 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:09 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:09 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:09 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.35225 (min) 0.35225 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: -0.412707 (min) -0.412707 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:09 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:09 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:09 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:09 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:09 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:09 DEBUG opendrift:643: No elements hit coastline.
14:20:09 DEBUG opendrift:1695: No elements to deactivate
14:20:09 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:09 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:09 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:09 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:09 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0018328320656149759 and 0.6063211906196811 m/s
14:20:10 DEBUG opendrift:2144: 15000 active elements (0 deactivated)
14:20:10 DEBUG opendrift:874: to be seeded: 5000, already seeded 15000
14:20:10 DEBUG opendrift:892: Released 417 new elements.
14:20:10 DEBUG opendrift:2055: ======================================================================
14:20:10 INFO opendrift:2056: 2025-03-13 17:20:04.288590 - step 13 of 96 - 15417 active elements (0 deactivated)
14:20:10 DEBUG opendrift:2062: 4583 elements scheduled.
14:20:10 DEBUG opendrift:2064: ======================================================================
14:20:10 DEBUG opendrift:2075: 59.928484920745234 <- latitude -> 60.400001525878906
14:20:10 DEBUG opendrift:2080: 4.00318197959653 <- longitude -> 4.257999809139299
14:20:10 DEBUG opendrift:2083: z = 0.0
14:20:10 DEBUG opendrift:2086: ---------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:10 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:10 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:618: Data needed for 15417 elements
14:20:10 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 15417 elements
14:20:10 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:10 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:10 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:10 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:10 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:10 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:10 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:618: Data needed for 15417 elements
14:20:10 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 15417 elements
14:20:10 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:10 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:10 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:10 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:10 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:10 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:10 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:618: Data needed for 15417 elements
14:20:10 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 15417 elements
14:20:10 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:10 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:10 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:10 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:10 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:10 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:10 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:10 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:10 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.382683 (min) 0.382683 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: -0.382683 (min) -0.382683 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:10 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:10 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:10 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:10 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:10 DEBUG opendrift:643: No elements hit coastline.
14:20:10 DEBUG opendrift:1695: No elements to deactivate
14:20:10 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:10 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:10 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:10 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:10 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.001956701948502457 and 0.6666777125583642 m/s
14:20:10 DEBUG opendrift:2144: 15417 active elements (0 deactivated)
14:20:10 DEBUG opendrift:874: to be seeded: 4583, already seeded 15417
14:20:10 DEBUG opendrift:892: Released 416 new elements.
14:20:10 DEBUG opendrift:2055: ======================================================================
14:20:10 INFO opendrift:2056: 2025-03-13 17:35:04.288590 - step 14 of 96 - 15833 active elements (0 deactivated)
14:20:10 DEBUG opendrift:2062: 4167 elements scheduled.
14:20:10 DEBUG opendrift:2064: ======================================================================
14:20:10 DEBUG opendrift:2075: 59.9248812533476 <- latitude -> 60.400293627631
14:20:10 DEBUG opendrift:2080: 4.0090732347992875 <- longitude -> 4.264089254374055
14:20:10 DEBUG opendrift:2083: z = 0.0
14:20:10 DEBUG opendrift:2086: ---------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:10 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:10 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:618: Data needed for 15833 elements
14:20:10 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 15833 elements
14:20:10 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:10 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:10 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:10 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:10 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:10 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:10 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:618: Data needed for 15833 elements
14:20:10 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 15833 elements
14:20:10 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:10 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:10 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:10 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:10 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:10 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:10 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:618: Data needed for 15833 elements
14:20:10 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 15833 elements
14:20:10 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:10 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:10 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:10 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:10 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:10 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:10 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:10 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:10 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.412707 (min) 0.412707 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: -0.35225 (min) -0.35225 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:10 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:10 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:10 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:10 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:10 DEBUG opendrift:643: No elements hit coastline.
14:20:10 DEBUG opendrift:1695: No elements to deactivate
14:20:10 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:10 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:10 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:10 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:10 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.001967897448752019 and 0.6556102905940424 m/s
14:20:10 DEBUG opendrift:2144: 15833 active elements (0 deactivated)
14:20:10 DEBUG opendrift:874: to be seeded: 4167, already seeded 15833
14:20:10 DEBUG opendrift:892: Released 417 new elements.
14:20:10 DEBUG opendrift:2055: ======================================================================
14:20:10 INFO opendrift:2056: 2025-03-13 17:50:04.288590 - step 15 of 96 - 16250 active elements (0 deactivated)
14:20:10 DEBUG opendrift:2062: 3750 elements scheduled.
14:20:10 DEBUG opendrift:2064: ======================================================================
14:20:10 DEBUG opendrift:2075: 59.92030957923807 <- latitude -> 60.40106597932256
14:20:10 DEBUG opendrift:2080: 4.013477799122561 <- longitude -> 4.271119658302646
14:20:10 DEBUG opendrift:2083: z = 0.0
14:20:10 DEBUG opendrift:2086: ---------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:10 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:10 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:618: Data needed for 16250 elements
14:20:10 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 16250 elements
14:20:10 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:10 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:10 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:10 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:10 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:10 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:10 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:618: Data needed for 16250 elements
14:20:10 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 16250 elements
14:20:10 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:10 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:10 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:10 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:10 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:10 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:10 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:618: Data needed for 16250 elements
14:20:10 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 16250 elements
14:20:10 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:10 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:10 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:10 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:10 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:10 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:10 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:10 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:10 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.442289 (min) 0.442289 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: -0.321439 (min) -0.321439 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:10 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:10 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:10 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:10 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:10 DEBUG opendrift:643: No elements hit coastline.
14:20:10 DEBUG opendrift:1695: No elements to deactivate
14:20:10 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:10 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:10 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:10 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:10 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0008582891768491151 and 0.6538565831550766 m/s
14:20:10 DEBUG opendrift:2144: 16250 active elements (0 deactivated)
14:20:10 DEBUG opendrift:874: to be seeded: 3750, already seeded 16250
14:20:10 DEBUG opendrift:892: Released 417 new elements.
14:20:10 DEBUG opendrift:2055: ======================================================================
14:20:10 INFO opendrift:2056: 2025-03-13 18:05:04.288590 - step 16 of 96 - 16667 active elements (0 deactivated)
14:20:10 DEBUG opendrift:2062: 3333 elements scheduled.
14:20:10 DEBUG opendrift:2064: ======================================================================
14:20:10 DEBUG opendrift:2075: 59.91554880496981 <- latitude -> 60.401284599310515
14:20:10 DEBUG opendrift:2080: 4.017297692353891 <- longitude -> 4.28139555982556
14:20:10 DEBUG opendrift:2083: z = 0.0
14:20:10 DEBUG opendrift:2086: ---------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:10 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:10 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:618: Data needed for 16667 elements
14:20:10 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 16667 elements
14:20:10 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:10 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:10 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:10 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:10 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:10 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:10 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:618: Data needed for 16667 elements
14:20:10 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 16667 elements
14:20:10 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:10 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:10 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:10 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:10 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:10 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:10 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:618: Data needed for 16667 elements
14:20:10 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 16667 elements
14:20:10 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:10 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:10 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:10 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:10 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:10 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:10 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:10 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:10 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.471397 (min) 0.471397 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: -0.290285 (min) -0.290285 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:10 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:10 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:10 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:10 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:10 DEBUG opendrift:643: No elements hit coastline.
14:20:10 DEBUG opendrift:1695: No elements to deactivate
14:20:10 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:10 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:10 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:10 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:10 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0010749043173384658 and 0.6017224887114345 m/s
14:20:10 DEBUG opendrift:2144: 16667 active elements (0 deactivated)
14:20:10 DEBUG opendrift:874: to be seeded: 3333, already seeded 16667
14:20:10 DEBUG opendrift:892: Released 416 new elements.
14:20:10 DEBUG opendrift:2055: ======================================================================
14:20:10 INFO opendrift:2056: 2025-03-13 18:20:04.288590 - step 17 of 96 - 17083 active elements (0 deactivated)
14:20:10 DEBUG opendrift:2062: 2917 elements scheduled.
14:20:10 DEBUG opendrift:2064: ======================================================================
14:20:10 DEBUG opendrift:2075: 59.912799497586136 <- latitude -> 60.4008807381051
14:20:10 DEBUG opendrift:2080: 4.024482770479221 <- longitude -> 4.291163082191724
14:20:10 DEBUG opendrift:2083: z = 0.0
14:20:10 DEBUG opendrift:2086: ---------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:10 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:10 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:618: Data needed for 17083 elements
14:20:10 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 17083 elements
14:20:10 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:10 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:10 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:10 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:10 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:10 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:10 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:618: Data needed for 17083 elements
14:20:10 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 17083 elements
14:20:10 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:10 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:10 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:10 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:10 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:10 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:10 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:618: Data needed for 17083 elements
14:20:10 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 17083 elements
14:20:10 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:10 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:10 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:10 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:10 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:10 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:10 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:10 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:10 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.5 (min) 0.5 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: -0.258819 (min) -0.258819 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:10 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:10 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:10 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:10 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:10 DEBUG opendrift:643: No elements hit coastline.
14:20:10 DEBUG opendrift:1695: No elements to deactivate
14:20:10 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:10 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:10 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:10 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:10 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0009981821062900402 and 0.6661203474158527 m/s
14:20:10 DEBUG opendrift:2144: 17083 active elements (0 deactivated)
14:20:10 DEBUG opendrift:874: to be seeded: 2917, already seeded 17083
14:20:10 DEBUG opendrift:892: Released 417 new elements.
14:20:10 DEBUG opendrift:2055: ======================================================================
14:20:10 INFO opendrift:2056: 2025-03-13 18:35:04.288590 - step 18 of 96 - 17500 active elements (0 deactivated)
14:20:10 DEBUG opendrift:2062: 2500 elements scheduled.
14:20:10 DEBUG opendrift:2064: ======================================================================
14:20:10 DEBUG opendrift:2075: 59.910377358643714 <- latitude -> 60.40102088787448
14:20:10 DEBUG opendrift:2080: 4.034468408347651 <- longitude -> 4.302448469542366
14:20:10 DEBUG opendrift:2083: z = 0.0
14:20:10 DEBUG opendrift:2086: ---------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:10 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:10 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:618: Data needed for 17500 elements
14:20:10 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 17500 elements
14:20:10 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:10 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:10 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:10 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:10 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:10 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:10 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:618: Data needed for 17500 elements
14:20:10 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 17500 elements
14:20:10 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:10 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:10 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:10 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:10 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:10 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:10 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:618: Data needed for 17500 elements
14:20:10 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 17500 elements
14:20:10 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:10 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:10 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:10 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:10 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:10 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:10 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:10 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:10 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.528068 (min) 0.528068 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: -0.227076 (min) -0.227076 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:10 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:10 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:10 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:10 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:10 DEBUG opendrift:643: No elements hit coastline.
14:20:10 DEBUG opendrift:1695: No elements to deactivate
14:20:10 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:10 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:10 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:10 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:10 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.00021801065656003164 and 0.7485461444861935 m/s
14:20:10 DEBUG opendrift:2144: 17500 active elements (0 deactivated)
14:20:10 DEBUG opendrift:874: to be seeded: 2500, already seeded 17500
14:20:10 DEBUG opendrift:892: Released 416 new elements.
14:20:10 DEBUG opendrift:2055: ======================================================================
14:20:10 INFO opendrift:2056: 2025-03-13 18:50:04.288590 - step 19 of 96 - 17916 active elements (0 deactivated)
14:20:10 DEBUG opendrift:2062: 2084 elements scheduled.
14:20:10 DEBUG opendrift:2064: ======================================================================
14:20:10 DEBUG opendrift:2075: 59.90663710157564 <- latitude -> 60.40169336098914
14:20:10 DEBUG opendrift:2080: 4.042440761321563 <- longitude -> 4.312854090972568
14:20:10 DEBUG opendrift:2083: z = 0.0
14:20:10 DEBUG opendrift:2086: ---------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:10 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:10 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:618: Data needed for 17916 elements
14:20:10 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 17916 elements
14:20:10 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:10 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:10 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:10 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:10 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:10 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:10 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:618: Data needed for 17916 elements
14:20:10 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 17916 elements
14:20:10 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:10 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:10 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:10 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:10 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:10 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:10 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:618: Data needed for 17916 elements
14:20:10 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 17916 elements
14:20:10 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:10 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:10 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:10 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:10 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:10 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:10 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:10 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:10 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:10 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.55557 (min) 0.55557 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: -0.19509 (min) -0.19509 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:10 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:10 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:10 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:10 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:10 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:10 DEBUG opendrift:643: No elements hit coastline.
14:20:10 DEBUG opendrift:1695: No elements to deactivate
14:20:10 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:10 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:10 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:10 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:10 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.001997235124461775 and 0.6652693857647132 m/s
14:20:11 DEBUG opendrift:2144: 17916 active elements (0 deactivated)
14:20:11 DEBUG opendrift:874: to be seeded: 2084, already seeded 17916
14:20:11 DEBUG opendrift:892: Released 417 new elements.
14:20:11 DEBUG opendrift:2055: ======================================================================
14:20:11 INFO opendrift:2056: 2025-03-13 19:05:04.288590 - step 20 of 96 - 18333 active elements (0 deactivated)
14:20:11 DEBUG opendrift:2062: 1667 elements scheduled.
14:20:11 DEBUG opendrift:2064: ======================================================================
14:20:11 DEBUG opendrift:2075: 59.90356381339163 <- latitude -> 60.402536662763566
14:20:11 DEBUG opendrift:2080: 4.0493281364868245 <- longitude -> 4.323011580022751
14:20:11 DEBUG opendrift:2083: z = 0.0
14:20:11 DEBUG opendrift:2086: ---------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:11 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:11 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:618: Data needed for 18333 elements
14:20:11 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 18333 elements
14:20:11 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:11 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:11 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:11 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:11 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:11 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:11 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:618: Data needed for 18333 elements
14:20:11 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 18333 elements
14:20:11 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:11 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:11 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:11 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:11 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:11 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:11 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:618: Data needed for 18333 elements
14:20:11 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 18333 elements
14:20:11 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:11 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:11 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:11 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:11 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:11 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:11 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:11 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:11 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.582478 (min) 0.582478 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: -0.162895 (min) -0.162895 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:11 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:11 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:11 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:11 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:11 DEBUG opendrift:643: No elements hit coastline.
14:20:11 DEBUG opendrift:1695: No elements to deactivate
14:20:11 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:11 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:11 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:11 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:11 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0016039308398587808 and 0.683000830967989 m/s
14:20:11 DEBUG opendrift:2144: 18333 active elements (0 deactivated)
14:20:11 DEBUG opendrift:874: to be seeded: 1667, already seeded 18333
14:20:11 DEBUG opendrift:892: Released 417 new elements.
14:20:11 DEBUG opendrift:2055: ======================================================================
14:20:11 INFO opendrift:2056: 2025-03-13 19:20:04.288590 - step 21 of 96 - 18750 active elements (0 deactivated)
14:20:11 DEBUG opendrift:2062: 1250 elements scheduled.
14:20:11 DEBUG opendrift:2064: ======================================================================
14:20:11 DEBUG opendrift:2075: 59.90408856642367 <- latitude -> 60.40251523663189
14:20:11 DEBUG opendrift:2080: 4.058483138550159 <- longitude -> 4.333665583662463
14:20:11 DEBUG opendrift:2083: z = 0.0
14:20:11 DEBUG opendrift:2086: ---------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:11 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:11 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:618: Data needed for 18750 elements
14:20:11 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 18750 elements
14:20:11 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:11 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:11 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:11 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:11 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:11 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:11 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:618: Data needed for 18750 elements
14:20:11 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 18750 elements
14:20:11 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:11 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:11 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:11 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:11 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:11 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:11 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:618: Data needed for 18750 elements
14:20:11 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 18750 elements
14:20:11 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:11 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:11 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:11 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:11 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:11 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:11 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:11 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:11 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.608761 (min) 0.608761 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: -0.130526 (min) -0.130526 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:11 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:11 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:11 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:11 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:11 DEBUG opendrift:643: No elements hit coastline.
14:20:11 DEBUG opendrift:1695: No elements to deactivate
14:20:11 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:11 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:11 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:11 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:11 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0036990750871861693 and 0.7446689692863168 m/s
14:20:11 DEBUG opendrift:2144: 18750 active elements (0 deactivated)
14:20:11 DEBUG opendrift:874: to be seeded: 1250, already seeded 18750
14:20:11 DEBUG opendrift:892: Released 416 new elements.
14:20:11 DEBUG opendrift:2055: ======================================================================
14:20:11 INFO opendrift:2056: 2025-03-13 19:35:04.288590 - step 22 of 96 - 19166 active elements (0 deactivated)
14:20:11 DEBUG opendrift:2062: 834 elements scheduled.
14:20:11 DEBUG opendrift:2064: ======================================================================
14:20:11 DEBUG opendrift:2075: 59.90385218058452 <- latitude -> 60.40342310011279
14:20:11 DEBUG opendrift:2080: 4.067826273407705 <- longitude -> 4.341711046255116
14:20:11 DEBUG opendrift:2083: z = 0.0
14:20:11 DEBUG opendrift:2086: ---------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:11 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:11 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:618: Data needed for 19166 elements
14:20:11 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 19166 elements
14:20:11 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:11 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:11 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:11 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:11 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:11 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:11 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:618: Data needed for 19166 elements
14:20:11 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 19166 elements
14:20:11 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:11 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:11 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:11 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:11 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:11 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:11 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:618: Data needed for 19166 elements
14:20:11 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 19166 elements
14:20:11 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:11 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:11 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:11 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:11 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:11 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:11 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:11 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:11 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.634393 (min) 0.634393 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: -0.0980171 (min) -0.0980171 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:11 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:11 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:11 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:11 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:11 DEBUG opendrift:643: No elements hit coastline.
14:20:11 DEBUG opendrift:1695: No elements to deactivate
14:20:11 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:11 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:11 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:11 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:11 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.00019165716172213915 and 0.6396977686373392 m/s
14:20:11 DEBUG opendrift:2144: 19166 active elements (0 deactivated)
14:20:11 DEBUG opendrift:874: to be seeded: 834, already seeded 19166
14:20:11 DEBUG opendrift:892: Released 417 new elements.
14:20:11 DEBUG opendrift:2055: ======================================================================
14:20:11 INFO opendrift:2056: 2025-03-13 19:50:04.288590 - step 23 of 96 - 19583 active elements (0 deactivated)
14:20:11 DEBUG opendrift:2062: 417 elements scheduled.
14:20:11 DEBUG opendrift:2064: ======================================================================
14:20:11 DEBUG opendrift:2075: 59.90298317681892 <- latitude -> 60.40370110750315
14:20:11 DEBUG opendrift:2080: 4.077305746052906 <- longitude -> 4.355811783819287
14:20:11 DEBUG opendrift:2083: z = 0.0
14:20:11 DEBUG opendrift:2086: ---------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:11 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:11 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:618: Data needed for 19583 elements
14:20:11 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 19583 elements
14:20:11 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:11 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:11 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:11 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:11 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:11 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:11 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:618: Data needed for 19583 elements
14:20:11 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 19583 elements
14:20:11 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:11 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:11 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:11 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:11 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:11 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:11 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:618: Data needed for 19583 elements
14:20:11 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 19583 elements
14:20:11 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:11 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:11 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:11 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:11 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:11 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:11 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:11 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:11 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.659346 (min) 0.659346 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: -0.0654031 (min) -0.0654031 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:11 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:11 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:11 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:11 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:11 DEBUG opendrift:643: No elements hit coastline.
14:20:11 DEBUG opendrift:1695: No elements to deactivate
14:20:11 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:11 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:11 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:11 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:11 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0005936550504541482 and 0.743740193946451 m/s
14:20:11 DEBUG opendrift:2144: 19583 active elements (0 deactivated)
14:20:11 DEBUG opendrift:874: to be seeded: 417, already seeded 19583
14:20:11 DEBUG opendrift:892: Released 417 new elements.
14:20:11 DEBUG opendrift:2055: ======================================================================
14:20:11 INFO opendrift:2056: 2025-03-13 20:05:04.288590 - step 24 of 96 - 20000 active elements (0 deactivated)
14:20:11 DEBUG opendrift:2062: 0 elements scheduled.
14:20:11 DEBUG opendrift:2064: ======================================================================
14:20:11 DEBUG opendrift:2075: 59.901561666798244 <- latitude -> 60.403782204352815
14:20:11 DEBUG opendrift:2080: 4.086470527137039 <- longitude -> 4.365840536958138
14:20:11 DEBUG opendrift:2083: z = 0.0
14:20:11 DEBUG opendrift:2086: ---------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:11 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:11 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:11 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 20000 elements
14:20:11 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:11 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:11 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:11 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:11 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:11 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:11 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:11 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 20000 elements
14:20:11 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:11 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:11 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:11 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:11 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:11 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:11 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:11 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 20000 elements
14:20:11 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:11 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:11 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:11 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:11 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:11 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:11 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:11 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:11 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.683592 (min) 0.683592 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: -0.0327191 (min) -0.0327191 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:11 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:11 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:11 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:11 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:11 DEBUG opendrift:643: No elements hit coastline.
14:20:11 DEBUG opendrift:1695: No elements to deactivate
14:20:11 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:11 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:11 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:11 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:11 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0008935162994609504 and 0.6667605295541306 m/s
14:20:11 DEBUG opendrift:2144: 20000 active elements (0 deactivated)
14:20:11 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:11 DEBUG opendrift:2055: ======================================================================
14:20:11 INFO opendrift:2056: 2025-03-13 20:20:04.288590 - step 25 of 96 - 20000 active elements (0 deactivated)
14:20:11 DEBUG opendrift:2062: 0 elements scheduled.
14:20:11 DEBUG opendrift:2064: ======================================================================
14:20:11 DEBUG opendrift:2075: 59.90311309538316 <- latitude -> 60.40480666937984
14:20:11 DEBUG opendrift:2080: 4.096864218374387 <- longitude -> 4.376247253394047
14:20:11 DEBUG opendrift:2083: z = 0.0
14:20:11 DEBUG opendrift:2086: ---------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:11 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:11 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:11 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 20000 elements
14:20:11 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:11 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:11 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:11 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:11 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:11 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:11 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:11 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 20000 elements
14:20:11 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:11 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:11 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:11 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:11 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:11 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:11 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:11 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 20000 elements
14:20:11 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:11 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:11 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:11 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:11 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:11 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:11 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:11 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:11 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.707107 (min) 0.707107 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:11 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:11 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:11 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:11 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:11 DEBUG opendrift:643: No elements hit coastline.
14:20:11 DEBUG opendrift:1695: No elements to deactivate
14:20:11 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:11 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:11 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:11 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:11 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0011338357964871093 and 0.644038055310478 m/s
14:20:11 DEBUG opendrift:2144: 20000 active elements (0 deactivated)
14:20:11 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:11 DEBUG opendrift:2055: ======================================================================
14:20:11 INFO opendrift:2056: 2025-03-13 20:35:04.288590 - step 26 of 96 - 20000 active elements (0 deactivated)
14:20:11 DEBUG opendrift:2062: 0 elements scheduled.
14:20:11 DEBUG opendrift:2064: ======================================================================
14:20:11 DEBUG opendrift:2075: 59.90287354514482 <- latitude -> 60.40581507034182
14:20:11 DEBUG opendrift:2080: 4.10702244158588 <- longitude -> 4.390070440082193
14:20:11 DEBUG opendrift:2083: z = 0.0
14:20:11 DEBUG opendrift:2086: ---------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:11 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:11 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:11 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 20000 elements
14:20:11 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:11 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:11 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:11 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:11 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:11 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:11 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:11 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 20000 elements
14:20:11 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:11 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:11 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:11 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:11 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:11 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:11 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:11 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 20000 elements
14:20:11 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:11 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:11 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:11 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:11 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:11 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:11 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:11 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:11 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.729864 (min) 0.729864 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.0327191 (min) 0.0327191 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:11 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:11 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:11 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:11 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:11 DEBUG opendrift:643: No elements hit coastline.
14:20:11 DEBUG opendrift:1695: No elements to deactivate
14:20:11 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:11 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:11 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:11 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:11 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0010555899984309677 and 0.6536829843858957 m/s
14:20:11 DEBUG opendrift:2144: 20000 active elements (0 deactivated)
14:20:11 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:11 DEBUG opendrift:2055: ======================================================================
14:20:11 INFO opendrift:2056: 2025-03-13 20:50:04.288590 - step 27 of 96 - 20000 active elements (0 deactivated)
14:20:11 DEBUG opendrift:2062: 0 elements scheduled.
14:20:11 DEBUG opendrift:2064: ======================================================================
14:20:11 DEBUG opendrift:2075: 59.90166104111246 <- latitude -> 60.40667784113543
14:20:11 DEBUG opendrift:2080: 4.113795917984371 <- longitude -> 4.40328564387015
14:20:11 DEBUG opendrift:2083: z = 0.0
14:20:11 DEBUG opendrift:2086: ---------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:11 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:11 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:11 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 20000 elements
14:20:11 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:11 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:11 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:11 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:11 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:11 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:11 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:11 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 20000 elements
14:20:11 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:11 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:11 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:11 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:11 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:11 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:11 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:11 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 20000 elements
14:20:11 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:11 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:11 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:11 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:11 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:11 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:11 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:11 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:11 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:11 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.75184 (min) 0.75184 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.0654031 (min) 0.0654031 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:11 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:11 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:11 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:11 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:11 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:11 DEBUG opendrift:643: No elements hit coastline.
14:20:12 DEBUG opendrift:1695: No elements to deactivate
14:20:12 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:12 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:12 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:12 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:12 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0018863816073306804 and 0.6718534574900351 m/s
14:20:12 DEBUG opendrift:2144: 20000 active elements (0 deactivated)
14:20:12 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:12 DEBUG opendrift:2055: ======================================================================
14:20:12 INFO opendrift:2056: 2025-03-13 21:05:04.288590 - step 28 of 96 - 20000 active elements (0 deactivated)
14:20:12 DEBUG opendrift:2062: 0 elements scheduled.
14:20:12 DEBUG opendrift:2064: ======================================================================
14:20:12 DEBUG opendrift:2075: 59.90188564110012 <- latitude -> 60.407998162742686
14:20:12 DEBUG opendrift:2080: 4.127892701183837 <- longitude -> 4.417909186553072
14:20:12 DEBUG opendrift:2083: z = 0.0
14:20:12 DEBUG opendrift:2086: ---------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:12 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:12 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:12 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 20000 elements
14:20:12 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:12 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:12 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:12 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:12 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:12 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:12 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:12 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 20000 elements
14:20:12 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:12 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:12 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:12 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:12 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:12 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:12 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:12 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 20000 elements
14:20:12 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:12 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:12 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:12 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:12 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:12 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:12 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:12 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:12 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.77301 (min) 0.77301 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.0980171 (min) 0.0980171 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:12 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:12 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:12 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:12 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:12 DEBUG opendrift:643: No elements hit coastline.
14:20:12 DEBUG opendrift:1695: No elements to deactivate
14:20:12 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:12 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:12 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:12 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:12 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.002116237652365572 and 0.6882531345546973 m/s
14:20:12 DEBUG opendrift:2144: 20000 active elements (0 deactivated)
14:20:12 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:12 DEBUG opendrift:2055: ======================================================================
14:20:12 INFO opendrift:2056: 2025-03-13 21:20:04.288590 - step 29 of 96 - 20000 active elements (0 deactivated)
14:20:12 DEBUG opendrift:2062: 0 elements scheduled.
14:20:12 DEBUG opendrift:2064: ======================================================================
14:20:12 DEBUG opendrift:2075: 59.90330578857828 <- latitude -> 60.41012859637172
14:20:12 DEBUG opendrift:2080: 4.138434642522655 <- longitude -> 4.434038905673627
14:20:12 DEBUG opendrift:2083: z = 0.0
14:20:12 DEBUG opendrift:2086: ---------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:12 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:12 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:12 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 20000 elements
14:20:12 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:12 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:12 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:12 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:12 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:12 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:12 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:12 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 20000 elements
14:20:12 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:12 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:12 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:12 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:12 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:12 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:12 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:12 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 20000 elements
14:20:12 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:12 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:12 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:12 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:12 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:12 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:12 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:12 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:12 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.793353 (min) 0.793353 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.130526 (min) 0.130526 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:12 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:12 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:12 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:12 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:12 DEBUG opendrift:643: No elements hit coastline.
14:20:12 DEBUG opendrift:1695: No elements to deactivate
14:20:12 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:12 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:12 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:12 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:12 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0007103531159978684 and 0.674080334030248 m/s
14:20:12 DEBUG opendrift:2144: 20000 active elements (0 deactivated)
14:20:12 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:12 DEBUG opendrift:2055: ======================================================================
14:20:12 INFO opendrift:2056: 2025-03-13 21:35:04.288590 - step 30 of 96 - 20000 active elements (0 deactivated)
14:20:12 DEBUG opendrift:2062: 0 elements scheduled.
14:20:12 DEBUG opendrift:2064: ======================================================================
14:20:12 DEBUG opendrift:2075: 59.9024997649947 <- latitude -> 60.41111039288447
14:20:12 DEBUG opendrift:2080: 4.15355292400636 <- longitude -> 4.4459095253978
14:20:12 DEBUG opendrift:2083: z = 0.0
14:20:12 DEBUG opendrift:2086: ---------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:12 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:12 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:12 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 20000 elements
14:20:12 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:12 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:12 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:12 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:12 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:12 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:12 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:12 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 20000 elements
14:20:12 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:12 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:12 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:12 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:12 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:12 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:12 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:12 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 20000 elements
14:20:12 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:12 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:12 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:12 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:12 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:12 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:12 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:12 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:12 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.812847 (min) 0.812847 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.162895 (min) 0.162895 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:12 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:12 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:12 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:12 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:12 DEBUG opendrift:643: No elements hit coastline.
14:20:12 DEBUG opendrift:1695: No elements to deactivate
14:20:12 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:12 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:12 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:12 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:12 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0012757928908164675 and 0.662120589730336 m/s
14:20:12 DEBUG opendrift:2144: 20000 active elements (0 deactivated)
14:20:12 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:12 DEBUG opendrift:2055: ======================================================================
14:20:12 INFO opendrift:2056: 2025-03-13 21:50:04.288590 - step 31 of 96 - 20000 active elements (0 deactivated)
14:20:12 DEBUG opendrift:2062: 0 elements scheduled.
14:20:12 DEBUG opendrift:2064: ======================================================================
14:20:12 DEBUG opendrift:2075: 59.90508783365382 <- latitude -> 60.41337456472657
14:20:12 DEBUG opendrift:2080: 4.166354642651018 <- longitude -> 4.46446667882978
14:20:12 DEBUG opendrift:2083: z = 0.0
14:20:12 DEBUG opendrift:2086: ---------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:12 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:12 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:12 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 20000 elements
14:20:12 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:12 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:12 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:12 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:12 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:12 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:12 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:12 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 20000 elements
14:20:12 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:12 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:12 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:12 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:12 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:12 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:12 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:12 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 20000 elements
14:20:12 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:12 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:12 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:12 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:12 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:12 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:12 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:12 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:12 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.83147 (min) 0.83147 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.19509 (min) 0.19509 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:12 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:12 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:12 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:12 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:12 DEBUG opendrift:643: No elements hit coastline.
14:20:12 DEBUG opendrift:1695: No elements to deactivate
14:20:12 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:12 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:12 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:12 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:12 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.001143053337813005 and 0.7186634827578383 m/s
14:20:12 DEBUG opendrift:2144: 20000 active elements (0 deactivated)
14:20:12 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:12 DEBUG opendrift:2055: ======================================================================
14:20:12 INFO opendrift:2056: 2025-03-13 22:05:04.288590 - step 32 of 96 - 20000 active elements (0 deactivated)
14:20:12 DEBUG opendrift:2062: 0 elements scheduled.
14:20:12 DEBUG opendrift:2064: ======================================================================
14:20:12 DEBUG opendrift:2075: 59.90612724435036 <- latitude -> 60.41619802062933
14:20:12 DEBUG opendrift:2080: 4.178696338449502 <- longitude -> 4.478927571971513
14:20:12 DEBUG opendrift:2083: z = 0.0
14:20:12 DEBUG opendrift:2086: ---------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:12 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:12 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:12 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 20000 elements
14:20:12 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:12 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:12 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:12 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:12 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:12 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:12 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:12 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 20000 elements
14:20:12 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:12 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:12 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:12 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:12 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:12 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:12 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:12 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 20000 elements
14:20:12 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:12 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:12 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:12 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:12 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:12 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:12 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:12 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:12 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.849202 (min) 0.849202 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.227076 (min) 0.227076 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:12 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:12 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:12 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:12 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:12 DEBUG opendrift:643: No elements hit coastline.
14:20:12 DEBUG opendrift:1695: No elements to deactivate
14:20:12 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:12 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:12 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:12 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:12 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0004403873312388031 and 0.6158548807702673 m/s
14:20:12 DEBUG opendrift:2144: 20000 active elements (0 deactivated)
14:20:12 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:12 DEBUG opendrift:2055: ======================================================================
14:20:12 INFO opendrift:2056: 2025-03-13 22:20:04.288590 - step 33 of 96 - 20000 active elements (0 deactivated)
14:20:12 DEBUG opendrift:2062: 0 elements scheduled.
14:20:12 DEBUG opendrift:2064: ======================================================================
14:20:12 DEBUG opendrift:2075: 59.90813017443453 <- latitude -> 60.41934410942157
14:20:12 DEBUG opendrift:2080: 4.188912912819971 <- longitude -> 4.493630199517732
14:20:12 DEBUG opendrift:2083: z = 0.0
14:20:12 DEBUG opendrift:2086: ---------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:12 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:12 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:12 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 20000 elements
14:20:12 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:12 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:12 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:12 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:12 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:12 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:12 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:12 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 20000 elements
14:20:12 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:12 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:12 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:12 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:12 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:12 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:12 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:12 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 20000 elements
14:20:12 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:12 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:12 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:12 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:12 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:12 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:12 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:12 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:12 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.866025 (min) 0.866025 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.258819 (min) 0.258819 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:12 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:12 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:12 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:12 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:12 DEBUG opendrift:643: No elements hit coastline.
14:20:12 DEBUG opendrift:1695: No elements to deactivate
14:20:12 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:12 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:12 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:12 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:12 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.001120124502003005 and 0.658877962761667 m/s
14:20:12 DEBUG opendrift:2144: 20000 active elements (0 deactivated)
14:20:12 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:12 DEBUG opendrift:2055: ======================================================================
14:20:12 INFO opendrift:2056: 2025-03-13 22:35:04.288590 - step 34 of 96 - 20000 active elements (0 deactivated)
14:20:12 DEBUG opendrift:2062: 0 elements scheduled.
14:20:12 DEBUG opendrift:2064: ======================================================================
14:20:12 DEBUG opendrift:2075: 59.908776579807125 <- latitude -> 60.4221569217412
14:20:12 DEBUG opendrift:2080: 4.203106484616197 <- longitude -> 4.508691817985142
14:20:12 DEBUG opendrift:2083: z = 0.0
14:20:12 DEBUG opendrift:2086: ---------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:12 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:12 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:12 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 20000 elements
14:20:12 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:12 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:12 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:12 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:12 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:12 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:12 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:12 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 20000 elements
14:20:12 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:12 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:12 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:12 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:12 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:12 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:12 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:12 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 20000 elements
14:20:12 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:12 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:12 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:12 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:12 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:12 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:12 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:12 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:12 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:12 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.881921 (min) 0.881921 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.290285 (min) 0.290285 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:12 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:13 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:13 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:13 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:13 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:13 DEBUG opendrift:643: No elements hit coastline.
14:20:13 DEBUG opendrift:1695: No elements to deactivate
14:20:13 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:13 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:13 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:13 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:13 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0017248076190992403 and 0.7661966211520362 m/s
14:20:13 DEBUG opendrift:2144: 20000 active elements (0 deactivated)
14:20:13 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:13 DEBUG opendrift:2055: ======================================================================
14:20:13 INFO opendrift:2056: 2025-03-13 22:50:04.288590 - step 35 of 96 - 20000 active elements (0 deactivated)
14:20:13 DEBUG opendrift:2062: 0 elements scheduled.
14:20:13 DEBUG opendrift:2064: ======================================================================
14:20:13 DEBUG opendrift:2075: 59.9095915542565 <- latitude -> 60.42506820731998
14:20:13 DEBUG opendrift:2080: 4.218132364989331 <- longitude -> 4.523874825698222
14:20:13 DEBUG opendrift:2083: z = 0.0
14:20:13 DEBUG opendrift:2086: ---------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:13 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:13 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:13 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 20000 elements
14:20:13 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:13 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:13 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:13 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:13 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:13 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:13 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:13 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 20000 elements
14:20:13 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:13 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:13 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:13 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:13 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:13 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:13 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:13 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 20000 elements
14:20:13 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:13 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:13 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:13 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:13 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:13 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:13 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:13 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:13 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.896873 (min) 0.896873 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.321439 (min) 0.321439 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:13 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:13 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:13 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:13 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:13 DEBUG opendrift:643: No elements hit coastline.
14:20:13 DEBUG opendrift:1695: No elements to deactivate
14:20:13 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:13 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:13 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:13 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:13 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0014906549108621282 and 0.6326984745705948 m/s
14:20:13 DEBUG opendrift:2144: 20000 active elements (0 deactivated)
14:20:13 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:13 DEBUG opendrift:2055: ======================================================================
14:20:13 INFO opendrift:2056: 2025-03-13 23:05:04.288590 - step 36 of 96 - 20000 active elements (0 deactivated)
14:20:13 DEBUG opendrift:2062: 0 elements scheduled.
14:20:13 DEBUG opendrift:2064: ======================================================================
14:20:13 DEBUG opendrift:2075: 59.91137266966747 <- latitude -> 60.42726798974073
14:20:13 DEBUG opendrift:2080: 4.22895384056398 <- longitude -> 4.541075195915157
14:20:13 DEBUG opendrift:2083: z = 0.0
14:20:13 DEBUG opendrift:2086: ---------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:13 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:13 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:13 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 20000 elements
14:20:13 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:13 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:13 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:13 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:13 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:13 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:13 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:13 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 20000 elements
14:20:13 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:13 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:13 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:13 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:13 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:13 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:13 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:13 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 20000 elements
14:20:13 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:13 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:13 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:13 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:13 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:13 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:13 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:13 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:13 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.910864 (min) 0.910864 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.35225 (min) 0.35225 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:13 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:13 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:13 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:13 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:13 DEBUG opendrift:643: No elements hit coastline.
14:20:13 DEBUG opendrift:1695: No elements to deactivate
14:20:13 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:13 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:13 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:13 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:13 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0012346637955292202 and 0.6454728418243137 m/s
14:20:13 DEBUG opendrift:2144: 20000 active elements (0 deactivated)
14:20:13 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:13 DEBUG opendrift:2055: ======================================================================
14:20:13 INFO opendrift:2056: 2025-03-13 23:20:04.288590 - step 37 of 96 - 20000 active elements (0 deactivated)
14:20:13 DEBUG opendrift:2062: 0 elements scheduled.
14:20:13 DEBUG opendrift:2064: ======================================================================
14:20:13 DEBUG opendrift:2075: 59.913331269297416 <- latitude -> 60.430696610959004
14:20:13 DEBUG opendrift:2080: 4.246188248959175 <- longitude -> 4.5576154159844275
14:20:13 DEBUG opendrift:2083: z = 0.0
14:20:13 DEBUG opendrift:2086: ---------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:13 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:13 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:13 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 20000 elements
14:20:13 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:13 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:13 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:13 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:13 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:13 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:13 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:13 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 20000 elements
14:20:13 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:13 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:13 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:13 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:13 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:13 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:13 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:13 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 20000 elements
14:20:13 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:13 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:13 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:13 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:13 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:13 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:13 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:13 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:13 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.92388 (min) 0.92388 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.382683 (min) 0.382683 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:13 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:13 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:13 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:13 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:13 DEBUG opendrift:643: No elements hit coastline.
14:20:13 DEBUG opendrift:1695: No elements to deactivate
14:20:13 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:13 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:13 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:13 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:13 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0019104925498583097 and 0.7178986843973044 m/s
14:20:13 DEBUG opendrift:2144: 20000 active elements (0 deactivated)
14:20:13 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:13 DEBUG opendrift:2055: ======================================================================
14:20:13 INFO opendrift:2056: 2025-03-13 23:35:04.288590 - step 38 of 96 - 20000 active elements (0 deactivated)
14:20:13 DEBUG opendrift:2062: 0 elements scheduled.
14:20:13 DEBUG opendrift:2064: ======================================================================
14:20:13 DEBUG opendrift:2075: 59.91853706559567 <- latitude -> 60.43527776395597
14:20:13 DEBUG opendrift:2080: 4.25734798757922 <- longitude -> 4.575037810806307
14:20:13 DEBUG opendrift:2083: z = 0.0
14:20:13 DEBUG opendrift:2086: ---------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:13 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:13 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:13 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 20000 elements
14:20:13 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:13 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:13 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:13 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:13 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:13 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:13 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:13 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 20000 elements
14:20:13 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:13 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:13 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:13 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:13 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:13 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:13 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:13 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 20000 elements
14:20:13 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:13 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:13 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:13 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:13 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:13 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:13 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:13 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:13 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.935906 (min) 0.935906 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.412707 (min) 0.412707 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:13 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:13 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:13 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:13 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:13 DEBUG opendrift:643: No elements hit coastline.
14:20:13 DEBUG opendrift:1695: No elements to deactivate
14:20:13 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:13 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:13 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:13 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:13 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0008334997975556808 and 0.6763909118887844 m/s
14:20:13 DEBUG opendrift:2144: 20000 active elements (0 deactivated)
14:20:13 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:13 DEBUG opendrift:2055: ======================================================================
14:20:13 INFO opendrift:2056: 2025-03-13 23:50:04.288590 - step 39 of 96 - 20000 active elements (0 deactivated)
14:20:13 DEBUG opendrift:2062: 0 elements scheduled.
14:20:13 DEBUG opendrift:2064: ======================================================================
14:20:13 DEBUG opendrift:2075: 59.92203329526548 <- latitude -> 60.43964269969195
14:20:13 DEBUG opendrift:2080: 4.270035780152138 <- longitude -> 4.5879132787970605
14:20:13 DEBUG opendrift:2083: z = 0.0
14:20:13 DEBUG opendrift:2086: ---------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:13 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:13 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:13 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 20000 elements
14:20:13 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:13 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:13 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:13 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:13 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:13 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:13 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:13 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 20000 elements
14:20:13 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:13 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:13 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:13 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:13 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:13 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:13 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:13 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 20000 elements
14:20:13 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:13 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:13 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:13 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:13 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:13 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:13 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:13 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:13 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.94693 (min) 0.94693 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.442289 (min) 0.442289 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:13 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:13 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:13 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:13 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:13 DEBUG opendrift:643: No elements hit coastline.
14:20:13 DEBUG opendrift:1695: No elements to deactivate
14:20:13 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:13 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:13 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:13 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:13 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0016273526975542673 and 0.6663615002156348 m/s
14:20:13 DEBUG opendrift:2144: 20000 active elements (0 deactivated)
14:20:13 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:13 DEBUG opendrift:2055: ======================================================================
14:20:13 INFO opendrift:2056: 2025-03-14 00:05:04.288590 - step 40 of 96 - 20000 active elements (0 deactivated)
14:20:13 DEBUG opendrift:2062: 0 elements scheduled.
14:20:13 DEBUG opendrift:2064: ======================================================================
14:20:13 DEBUG opendrift:2075: 59.92574316134173 <- latitude -> 60.44368051305642
14:20:13 DEBUG opendrift:2080: 4.290493840547831 <- longitude -> 4.603633859038005
14:20:13 DEBUG opendrift:2083: z = 0.0
14:20:13 DEBUG opendrift:2086: ---------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:13 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:13 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:13 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 20000 elements
14:20:13 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:13 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:13 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:13 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:13 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:13 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:13 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:13 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 20000 elements
14:20:13 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:13 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:13 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:13 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:13 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:13 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:13 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:13 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 20000 elements
14:20:13 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:13 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:13 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:13 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:13 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:13 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:13 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:13 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:13 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.95694 (min) 0.95694 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.471397 (min) 0.471397 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:13 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:13 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:13 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:13 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:13 DEBUG opendrift:643: No elements hit coastline.
14:20:13 DEBUG opendrift:1695: No elements to deactivate
14:20:13 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:13 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:13 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:13 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:13 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0001850873502866946 and 0.632668220386991 m/s
14:20:13 DEBUG opendrift:2144: 20000 active elements (0 deactivated)
14:20:13 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:13 DEBUG opendrift:2055: ======================================================================
14:20:13 INFO opendrift:2056: 2025-03-14 00:20:04.288590 - step 41 of 96 - 20000 active elements (0 deactivated)
14:20:13 DEBUG opendrift:2062: 0 elements scheduled.
14:20:13 DEBUG opendrift:2064: ======================================================================
14:20:13 DEBUG opendrift:2075: 59.92874978378137 <- latitude -> 60.45028740777853
14:20:13 DEBUG opendrift:2080: 4.29985088543277 <- longitude -> 4.617380856866013
14:20:13 DEBUG opendrift:2083: z = 0.0
14:20:13 DEBUG opendrift:2086: ---------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:13 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:13 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:13 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 20000 elements
14:20:13 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:13 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:13 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:13 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:13 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:13 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:13 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:13 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 20000 elements
14:20:13 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:13 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:13 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:13 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:13 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:13 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:13 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:13 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 20000 elements
14:20:13 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:13 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:13 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:13 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:13 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:13 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:13 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:13 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:13 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:13 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.965926 (min) 0.965926 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.5 (min) 0.5 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:13 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:13 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:13 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:13 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:13 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:13 DEBUG opendrift:643: No elements hit coastline.
14:20:14 DEBUG opendrift:1695: No elements to deactivate
14:20:14 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:14 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:14 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:14 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:14 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0015835789584519478 and 0.6826808654752956 m/s
14:20:14 DEBUG opendrift:2144: 20000 active elements (0 deactivated)
14:20:14 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:14 DEBUG opendrift:2055: ======================================================================
14:20:14 INFO opendrift:2056: 2025-03-14 00:35:04.288590 - step 42 of 96 - 20000 active elements (0 deactivated)
14:20:14 DEBUG opendrift:2062: 0 elements scheduled.
14:20:14 DEBUG opendrift:2064: ======================================================================
14:20:14 DEBUG opendrift:2075: 59.93225232429069 <- latitude -> 60.45419211199763
14:20:14 DEBUG opendrift:2080: 4.317069028871523 <- longitude -> 4.630672591139433
14:20:14 DEBUG opendrift:2083: z = 0.0
14:20:14 DEBUG opendrift:2086: ---------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:14 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:14 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:14 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 20000 elements
14:20:14 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:14 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:14 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:14 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:14 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:14 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:14 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:14 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 20000 elements
14:20:14 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:14 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:14 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:14 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:14 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:14 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:14 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:14 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 20000 elements
14:20:14 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:14 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:14 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:14 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:14 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:14 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:14 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:14 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:14 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.973877 (min) 0.973877 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.528068 (min) 0.528068 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:14 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:14 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:14 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:14 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:14 DEBUG opendrift:643: No elements hit coastline.
14:20:14 DEBUG opendrift:1695: No elements to deactivate
14:20:14 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:14 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:14 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:14 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:14 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0015878403240043462 and 0.6532421108491367 m/s
14:20:14 DEBUG opendrift:2144: 20000 active elements (0 deactivated)
14:20:14 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:14 DEBUG opendrift:2055: ======================================================================
14:20:14 INFO opendrift:2056: 2025-03-14 00:50:04.288590 - step 43 of 96 - 20000 active elements (0 deactivated)
14:20:14 DEBUG opendrift:2062: 0 elements scheduled.
14:20:14 DEBUG opendrift:2064: ======================================================================
14:20:14 DEBUG opendrift:2075: 59.93481294649016 <- latitude -> 60.458028523472535
14:20:14 DEBUG opendrift:2080: 4.328373400403116 <- longitude -> 4.651551556117362
14:20:14 DEBUG opendrift:2083: z = 0.0
14:20:14 DEBUG opendrift:2086: ---------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:14 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:14 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:14 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 20000 elements
14:20:14 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:14 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:14 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:14 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:14 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:14 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:14 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:14 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 20000 elements
14:20:14 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:14 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:14 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:14 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:14 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:14 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:14 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:14 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 20000 elements
14:20:14 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:14 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:14 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:14 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:14 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:14 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:14 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:14 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:14 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.980785 (min) 0.980785 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.55557 (min) 0.55557 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:14 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:14 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:14 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:14 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:14 DEBUG opendrift:643: No elements hit coastline.
14:20:14 DEBUG opendrift:1695: No elements to deactivate
14:20:14 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:14 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:14 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:14 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:14 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.001516365238598295 and 0.6484546794312046 m/s
14:20:14 DEBUG opendrift:2144: 20000 active elements (0 deactivated)
14:20:14 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:14 DEBUG opendrift:2055: ======================================================================
14:20:14 INFO opendrift:2056: 2025-03-14 01:05:04.288590 - step 44 of 96 - 20000 active elements (0 deactivated)
14:20:14 DEBUG opendrift:2062: 0 elements scheduled.
14:20:14 DEBUG opendrift:2064: ======================================================================
14:20:14 DEBUG opendrift:2075: 59.937363174601785 <- latitude -> 60.46200923050673
14:20:14 DEBUG opendrift:2080: 4.3420708219898545 <- longitude -> 4.666206970379602
14:20:14 DEBUG opendrift:2083: z = 0.0
14:20:14 DEBUG opendrift:2086: ---------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:14 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:14 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:14 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 20000 elements
14:20:14 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:14 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:14 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:14 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:14 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:14 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:14 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:14 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 20000 elements
14:20:14 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:14 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:14 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:14 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:14 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:14 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:14 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:14 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 20000 elements
14:20:14 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:14 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:14 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:14 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:14 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:14 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:14 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:14 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:14 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.986643 (min) 0.986643 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.582478 (min) 0.582478 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:14 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:14 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:14 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:14 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:14 DEBUG opendrift:643: No elements hit coastline.
14:20:14 DEBUG opendrift:1695: No elements to deactivate
14:20:14 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:14 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:14 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:14 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:14 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0017133649318304862 and 0.6667984640990559 m/s
14:20:14 DEBUG opendrift:2144: 20000 active elements (0 deactivated)
14:20:14 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:14 DEBUG opendrift:2055: ======================================================================
14:20:14 INFO opendrift:2056: 2025-03-14 01:20:04.288590 - step 45 of 96 - 20000 active elements (0 deactivated)
14:20:14 DEBUG opendrift:2062: 0 elements scheduled.
14:20:14 DEBUG opendrift:2064: ======================================================================
14:20:14 DEBUG opendrift:2075: 59.942898871394604 <- latitude -> 60.466735965854056
14:20:14 DEBUG opendrift:2080: 4.356940876280604 <- longitude -> 4.681540273837231
14:20:14 DEBUG opendrift:2083: z = 0.0
14:20:14 DEBUG opendrift:2086: ---------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:14 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:14 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:14 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 20000 elements
14:20:14 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:14 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:14 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:14 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:14 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:14 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:14 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:14 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 20000 elements
14:20:14 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:14 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:14 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:14 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:14 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:14 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:14 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:14 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 20000 elements
14:20:14 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:14 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:14 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:14 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:14 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:14 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:14 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:14 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:14 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.991445 (min) 0.991445 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.608761 (min) 0.608761 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:14 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:14 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:14 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:14 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:14 DEBUG opendrift:643: No elements hit coastline.
14:20:14 DEBUG opendrift:1695: No elements to deactivate
14:20:14 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:14 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:14 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:14 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:14 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.002747788368445282 and 0.7360139614071095 m/s
14:20:14 DEBUG opendrift:2144: 20000 active elements (0 deactivated)
14:20:14 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:14 DEBUG opendrift:2055: ======================================================================
14:20:14 INFO opendrift:2056: 2025-03-14 01:35:04.288590 - step 46 of 96 - 20000 active elements (0 deactivated)
14:20:14 DEBUG opendrift:2062: 0 elements scheduled.
14:20:14 DEBUG opendrift:2064: ======================================================================
14:20:14 DEBUG opendrift:2075: 59.94656178673701 <- latitude -> 60.473049955413664
14:20:14 DEBUG opendrift:2080: 4.375342357354461 <- longitude -> 4.696118218907002
14:20:14 DEBUG opendrift:2083: z = 0.0
14:20:14 DEBUG opendrift:2086: ---------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:14 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:14 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:14 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 20000 elements
14:20:14 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:14 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:14 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:14 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:14 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:14 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:14 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:14 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 20000 elements
14:20:14 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:14 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:14 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:14 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:14 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:14 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:14 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:14 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 20000 elements
14:20:14 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:14 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:14 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:14 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:14 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:14 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:14 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:14 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:14 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.995185 (min) 0.995185 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.634393 (min) 0.634393 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:14 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:14 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:14 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:14 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:14 DEBUG opendrift:643: No elements hit coastline.
14:20:14 DEBUG opendrift:1695: No elements to deactivate
14:20:14 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:14 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:14 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:14 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:14 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0019102526596760404 and 0.7167953635925663 m/s
14:20:14 DEBUG opendrift:2144: 20000 active elements (0 deactivated)
14:20:14 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:14 DEBUG opendrift:2055: ======================================================================
14:20:14 INFO opendrift:2056: 2025-03-14 01:50:04.288590 - step 47 of 96 - 20000 active elements (0 deactivated)
14:20:14 DEBUG opendrift:2062: 0 elements scheduled.
14:20:14 DEBUG opendrift:2064: ======================================================================
14:20:14 DEBUG opendrift:2075: 59.95031655946993 <- latitude -> 60.47908039109224
14:20:14 DEBUG opendrift:2080: 4.38538576271492 <- longitude -> 4.714458142418335
14:20:14 DEBUG opendrift:2083: z = 0.0
14:20:14 DEBUG opendrift:2086: ---------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:14 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:14 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:14 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 20000 elements
14:20:14 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:14 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:14 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:14 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:14 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:14 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:14 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:14 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 20000 elements
14:20:14 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:14 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:14 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:14 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:14 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:14 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:14 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:14 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 20000 elements
14:20:14 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:14 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:14 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:14 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:14 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:14 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:14 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:14 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:14 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.997859 (min) 0.997859 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.659346 (min) 0.659346 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:14 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:14 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:14 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:14 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:14 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:14 DEBUG opendrift:643: No elements hit coastline.
14:20:14 DEBUG opendrift:1695: No elements to deactivate
14:20:14 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:14 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:14 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:14 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:14 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.00018069244752100862 and 0.6348784056743623 m/s
14:20:14 DEBUG opendrift:2144: 20000 active elements (0 deactivated)
14:20:14 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:14 DEBUG opendrift:2055: ======================================================================
14:20:14 INFO opendrift:2056: 2025-03-14 02:05:04.288590 - step 48 of 96 - 20000 active elements (0 deactivated)
14:20:14 DEBUG opendrift:2062: 0 elements scheduled.
14:20:14 DEBUG opendrift:2064: ======================================================================
14:20:14 DEBUG opendrift:2075: 59.95467245469515 <- latitude -> 60.48657383259644
14:20:14 DEBUG opendrift:2080: 4.401749585371877 <- longitude -> 4.73569505044526
14:20:14 DEBUG opendrift:2083: z = 0.0
14:20:14 DEBUG opendrift:2086: ---------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:14 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:14 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:14 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 20000 elements
14:20:14 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:14 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:14 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:14 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:14 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:14 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:14 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:14 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 20000 elements
14:20:14 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:14 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:14 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:14 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:14 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:14 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:14 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:14 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:14 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 20000 elements
14:20:15 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:15 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:15 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:15 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:15 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:15 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:15 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:15 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:15 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.999465 (min) 0.999465 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.683592 (min) 0.683592 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:15 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:15 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:15 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:15 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:15 DEBUG opendrift:643: No elements hit coastline.
14:20:15 DEBUG opendrift:1695: No elements to deactivate
14:20:15 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:15 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:15 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:15 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:15 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.002027839943802982 and 0.7055052557587911 m/s
14:20:15 DEBUG opendrift:2144: 20000 active elements (0 deactivated)
14:20:15 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:15 DEBUG opendrift:2055: ======================================================================
14:20:15 INFO opendrift:2056: 2025-03-14 02:20:04.288590 - step 49 of 96 - 20000 active elements (0 deactivated)
14:20:15 DEBUG opendrift:2062: 0 elements scheduled.
14:20:15 DEBUG opendrift:2064: ======================================================================
14:20:15 DEBUG opendrift:2075: 59.95744448247598 <- latitude -> 60.49147261082814
14:20:15 DEBUG opendrift:2080: 4.419103132647004 <- longitude -> 4.748091669921553
14:20:15 DEBUG opendrift:2083: z = 0.0
14:20:15 DEBUG opendrift:2086: ---------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:15 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:15 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:15 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 20000 elements
14:20:15 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:15 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:15 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:15 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:15 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:15 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:15 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:15 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 20000 elements
14:20:15 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:15 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:15 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:15 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:15 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:15 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:15 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:15 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 20000 elements
14:20:15 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:15 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:15 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:15 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:15 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:15 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:15 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:15 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:15 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 1 (min) 1 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.707107 (min) 0.707107 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:15 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:15 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:15 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:15 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:15 DEBUG opendrift:643: No elements hit coastline.
14:20:15 DEBUG opendrift:1695: No elements to deactivate
14:20:15 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:15 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:15 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:15 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:15 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0020421469399316654 and 0.6616856469321197 m/s
14:20:15 DEBUG opendrift:2144: 20000 active elements (0 deactivated)
14:20:15 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:15 DEBUG opendrift:2055: ======================================================================
14:20:15 INFO opendrift:2056: 2025-03-14 02:35:04.288590 - step 50 of 96 - 20000 active elements (0 deactivated)
14:20:15 DEBUG opendrift:2062: 0 elements scheduled.
14:20:15 DEBUG opendrift:2064: ======================================================================
14:20:15 DEBUG opendrift:2075: 59.96259676838754 <- latitude -> 60.49686032787412
14:20:15 DEBUG opendrift:2080: 4.434404968150012 <- longitude -> 4.765753990198858
14:20:15 DEBUG opendrift:2083: z = 0.0
14:20:15 DEBUG opendrift:2086: ---------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:15 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:15 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:15 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 20000 elements
14:20:15 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:15 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:15 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:15 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:15 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:15 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:15 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:15 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 20000 elements
14:20:15 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:15 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:15 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:15 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:15 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:15 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:15 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:15 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 20000 elements
14:20:15 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:15 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:15 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:15 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:15 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:15 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:15 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:15 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:15 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.999465 (min) 0.999465 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.729864 (min) 0.729864 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:15 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:15 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:15 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:15 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:15 DEBUG opendrift:643: No elements hit coastline.
14:20:15 DEBUG opendrift:1695: No elements to deactivate
14:20:15 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:15 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:15 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:15 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:15 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.002474977411255848 and 0.6549270565747503 m/s
14:20:15 DEBUG opendrift:2144: 20000 active elements (0 deactivated)
14:20:15 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:15 DEBUG opendrift:2055: ======================================================================
14:20:15 INFO opendrift:2056: 2025-03-14 02:50:04.288590 - step 51 of 96 - 20000 active elements (0 deactivated)
14:20:15 DEBUG opendrift:2062: 0 elements scheduled.
14:20:15 DEBUG opendrift:2064: ======================================================================
14:20:15 DEBUG opendrift:2075: 59.971044401719595 <- latitude -> 60.50506750296828
14:20:15 DEBUG opendrift:2080: 4.446445912819849 <- longitude -> 4.778871472777116
14:20:15 DEBUG opendrift:2083: z = 0.0
14:20:15 DEBUG opendrift:2086: ---------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:15 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:15 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:15 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 20000 elements
14:20:15 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:15 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:15 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:15 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:15 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:15 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:15 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:15 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 20000 elements
14:20:15 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:15 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:15 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:15 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:15 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:15 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:15 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:15 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 20000 elements
14:20:15 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:15 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:15 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:15 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:15 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:15 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:15 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:15 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:15 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.997859 (min) 0.997859 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.75184 (min) 0.75184 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:15 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:15 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:15 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:15 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:15 DEBUG opendrift:643: No elements hit coastline.
14:20:15 DEBUG opendrift:1695: No elements to deactivate
14:20:15 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:15 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:15 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:15 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:15 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.001394557425952194 and 0.6034335668891109 m/s
14:20:15 DEBUG opendrift:2144: 20000 active elements (0 deactivated)
14:20:15 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:15 DEBUG opendrift:2055: ======================================================================
14:20:15 INFO opendrift:2056: 2025-03-14 03:05:04.288590 - step 52 of 96 - 20000 active elements (0 deactivated)
14:20:15 DEBUG opendrift:2062: 0 elements scheduled.
14:20:15 DEBUG opendrift:2064: ======================================================================
14:20:15 DEBUG opendrift:2075: 59.97880140676544 <- latitude -> 60.51243905491284
14:20:15 DEBUG opendrift:2080: 4.459436718455204 <- longitude -> 4.794167977121992
14:20:15 DEBUG opendrift:2083: z = 0.0
14:20:15 DEBUG opendrift:2086: ---------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:15 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:15 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:15 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 20000 elements
14:20:15 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:15 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:15 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:15 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:15 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:15 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:15 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:15 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 20000 elements
14:20:15 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:15 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:15 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:15 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:15 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:15 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:15 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:15 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 20000 elements
14:20:15 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:15 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:15 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:15 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:15 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:15 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:15 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:15 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:15 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.995185 (min) 0.995185 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.77301 (min) 0.77301 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:15 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:15 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:15 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:15 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:15 DEBUG opendrift:643: No elements hit coastline.
14:20:15 DEBUG opendrift:1695: No elements to deactivate
14:20:15 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:15 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:15 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:15 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:15 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0019181642261345978 and 0.650211524998927 m/s
14:20:15 DEBUG opendrift:2144: 20000 active elements (0 deactivated)
14:20:15 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:15 DEBUG opendrift:2055: ======================================================================
14:20:15 INFO opendrift:2056: 2025-03-14 03:20:04.288590 - step 53 of 96 - 20000 active elements (0 deactivated)
14:20:15 DEBUG opendrift:2062: 0 elements scheduled.
14:20:15 DEBUG opendrift:2064: ======================================================================
14:20:15 DEBUG opendrift:2075: 59.98353899777469 <- latitude -> 60.51950454950766
14:20:15 DEBUG opendrift:2080: 4.476952323150714 <- longitude -> 4.819208514217606
14:20:15 DEBUG opendrift:2083: z = 0.0
14:20:15 DEBUG opendrift:2086: ---------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:15 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:15 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:15 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 20000 elements
14:20:15 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:15 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:15 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:15 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:15 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:15 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:15 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:15 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 20000 elements
14:20:15 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:15 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:15 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:15 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:15 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:15 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:15 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:15 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 20000 elements
14:20:15 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:15 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:15 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:15 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:15 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:15 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:15 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:15 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:15 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.991445 (min) 0.991445 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.793353 (min) 0.793353 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:15 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:15 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:15 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:15 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:15 DEBUG opendrift:643: No elements hit coastline.
14:20:15 DEBUG opendrift:1695: No elements to deactivate
14:20:15 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:15 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:15 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:15 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:15 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0010539043123736992 and 0.6310421781391603 m/s
14:20:15 DEBUG opendrift:2144: 20000 active elements (0 deactivated)
14:20:15 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:15 DEBUG opendrift:2055: ======================================================================
14:20:15 INFO opendrift:2056: 2025-03-14 03:35:04.288590 - step 54 of 96 - 20000 active elements (0 deactivated)
14:20:15 DEBUG opendrift:2062: 0 elements scheduled.
14:20:15 DEBUG opendrift:2064: ======================================================================
14:20:15 DEBUG opendrift:2075: 59.98910053749984 <- latitude -> 60.52828738674667
14:20:15 DEBUG opendrift:2080: 4.4923570404986 <- longitude -> 4.836968615800813
14:20:15 DEBUG opendrift:2083: z = 0.0
14:20:15 DEBUG opendrift:2086: ---------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:15 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:15 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:15 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 20000 elements
14:20:15 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:15 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:15 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:15 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:15 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:15 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:15 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:15 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 20000 elements
14:20:15 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:15 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:15 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:15 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:15 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:15 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:15 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:15 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 20000 elements
14:20:15 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:15 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:15 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:15 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:15 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:15 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:15 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:15 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:15 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.986643 (min) 0.986643 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.812847 (min) 0.812847 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:15 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:15 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:15 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:15 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:15 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:15 DEBUG opendrift:643: No elements hit coastline.
14:20:15 DEBUG opendrift:1695: No elements to deactivate
14:20:15 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:15 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:15 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:15 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:15 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.001660485658366536 and 0.6728553733600551 m/s
14:20:15 DEBUG opendrift:2144: 20000 active elements (0 deactivated)
14:20:15 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:15 DEBUG opendrift:2055: ======================================================================
14:20:15 INFO opendrift:2056: 2025-03-14 03:50:04.288590 - step 55 of 96 - 20000 active elements (0 deactivated)
14:20:15 DEBUG opendrift:2062: 0 elements scheduled.
14:20:15 DEBUG opendrift:2064: ======================================================================
14:20:15 DEBUG opendrift:2075: 59.99657482706745 <- latitude -> 60.5360426044292
14:20:15 DEBUG opendrift:2080: 4.508657546666509 <- longitude -> 4.854395594046222
14:20:15 DEBUG opendrift:2083: z = 0.0
14:20:15 DEBUG opendrift:2086: ---------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:15 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:15 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:15 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 20000 elements
14:20:15 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:15 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:15 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:15 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:15 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:15 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:15 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:15 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 20000 elements
14:20:15 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:15 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:15 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:15 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:15 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:15 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:15 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:15 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:15 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 20000 elements
14:20:17 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:17 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:17 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:17 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:17 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:17 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:17 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:17 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:17 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:17 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.980785 (min) 0.980785 (max)
14:20:17 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.83147 (min) 0.83147 (max)
14:20:17 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:17 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:17 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:17 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:17 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:17 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:17 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:17 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:17 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:17 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:17 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:17 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:17 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:17 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:17 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:17 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:17 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:17 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:17 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:17 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:17 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:17 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:17 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:17 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:17 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:17 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:17 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:17 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:17 DEBUG opendrift:643: No elements hit coastline.
14:20:17 DEBUG opendrift:1695: No elements to deactivate
14:20:17 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:17 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:17 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:17 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:17 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0023961718747631286 and 0.7089049851505758 m/s
14:20:17 DEBUG opendrift:2144: 20000 active elements (0 deactivated)
14:20:17 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:17 DEBUG opendrift:2055: ======================================================================
14:20:17 INFO opendrift:2056: 2025-03-14 04:05:04.288590 - step 56 of 96 - 20000 active elements (0 deactivated)
14:20:17 DEBUG opendrift:2062: 0 elements scheduled.
14:20:17 DEBUG opendrift:2064: ======================================================================
14:20:17 DEBUG opendrift:2075: 60.0020932952339 <- latitude -> 60.54228849107936
14:20:17 DEBUG opendrift:2080: 4.525568561644832 <- longitude -> 4.873788184570436
14:20:17 DEBUG opendrift:2083: z = 0.0
14:20:17 DEBUG opendrift:2086: ---------------------------------
14:20:17 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:17 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:17 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:17 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:17 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:17 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:17 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 20000 elements
14:20:17 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:17 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:17 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:17 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:17 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:17 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:17 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:17 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:17 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:17 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:17 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 20000 elements
14:20:17 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:17 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:17 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:17 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:17 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:17 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:17 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:17 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:17 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:17 DEBUG opendrift.models.basemodel.environment:618: Data needed for 20000 elements
14:20:17 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 20000 elements
14:20:17 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:17 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:17 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:17 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:17 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:17 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:17 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:17 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:17 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:17 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.973877 (min) 0.973877 (max)
14:20:17 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.849202 (min) 0.849202 (max)
14:20:17 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:17 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:17 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:17 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:17 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:17 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:17 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:17 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:17 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:17 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:17 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:17 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:17 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:17 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:17 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:17 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:17 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:17 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:17 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:17 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:17 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:17 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:17 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 1 (max)
14:20:17 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:17 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:17 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:17 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:17 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:17 DEBUG opendrift:646: 4 elements hit land, moving them to the coastline.
14:20:17 DEBUG opendrift:1668: Added status stranded
14:20:17 DEBUG opendrift:1679: 4 elements scheduled for deactivation (stranded)
14:20:17 DEBUG opendrift:1681: (z: 0.000000 to 0.000000)
14:20:19 DEBUG opendrift:1699: Removed 4 elements.
14:20:19 DEBUG opendrift:1702: Removed 4 values from environment.
14:20:19 DEBUG opendrift:1707: remove items from profile for z
14:20:19 DEBUG opendrift:1707: remove items from profile for ocean_vertical_diffusivity
14:20:19 DEBUG opendrift:1711: Removed 4 values from environment_profiles.
14:20:19 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:19 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:19 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:19 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:19 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0011827906588158666 and 0.6916539463575451 m/s
14:20:19 DEBUG opendrift:2144: 19996 active elements (4 deactivated)
14:20:19 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:19 DEBUG opendrift:2055: ======================================================================
14:20:19 INFO opendrift:2056: 2025-03-14 04:20:04.288590 - step 57 of 96 - 19996 active elements (4 deactivated)
14:20:19 DEBUG opendrift:2062: 0 elements scheduled.
14:20:19 DEBUG opendrift:2064: ======================================================================
14:20:19 DEBUG opendrift:2075: 60.008563836349374 <- latitude -> 60.55051001185299
14:20:19 DEBUG opendrift:2080: 4.542283262934572 <- longitude -> 4.876354891503844
14:20:19 DEBUG opendrift:2083: z = 0.0
14:20:19 DEBUG opendrift:2086: ---------------------------------
14:20:19 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:19 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:19 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:19 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:19 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:19 DEBUG opendrift.models.basemodel.environment:618: Data needed for 19996 elements
14:20:19 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 19996 elements
14:20:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:19 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:19 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:19 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:19 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:19 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:19 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:19 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:19 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:19 DEBUG opendrift.models.basemodel.environment:618: Data needed for 19996 elements
14:20:19 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 19996 elements
14:20:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:19 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:19 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:19 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:19 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:19 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:19 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:19 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:19 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:19 DEBUG opendrift.models.basemodel.environment:618: Data needed for 19996 elements
14:20:19 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 19996 elements
14:20:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:19 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:19 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:19 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:19 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:19 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:19 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:19 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:19 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:19 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.965926 (min) 0.965926 (max)
14:20:19 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.866025 (min) 0.866025 (max)
14:20:19 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:19 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:19 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:19 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:19 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:19 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:19 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:19 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:19 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:19 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:19 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:19 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:19 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:19 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:19 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:19 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:19 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:19 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:19 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:19 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:19 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:19 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:19 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 1 (max)
14:20:19 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:19 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:19 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:19 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:19 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:19 DEBUG opendrift:646: 27 elements hit land, moving them to the coastline.
14:20:19 DEBUG opendrift:1679: 27 elements scheduled for deactivation (stranded)
14:20:19 DEBUG opendrift:1681: (z: 0.000000 to 0.000000)
14:20:19 DEBUG opendrift:1699: Removed 27 elements.
14:20:19 DEBUG opendrift:1702: Removed 27 values from environment.
14:20:19 DEBUG opendrift:1707: remove items from profile for z
14:20:19 DEBUG opendrift:1707: remove items from profile for ocean_vertical_diffusivity
14:20:19 DEBUG opendrift:1711: Removed 27 values from environment_profiles.
14:20:19 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:19 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:19 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:19 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:19 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0023570944391652264 and 0.6772708540135095 m/s
14:20:19 DEBUG opendrift:2144: 19969 active elements (31 deactivated)
14:20:19 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:19 DEBUG opendrift:2055: ======================================================================
14:20:19 INFO opendrift:2056: 2025-03-14 04:35:04.288590 - step 58 of 96 - 19969 active elements (31 deactivated)
14:20:19 DEBUG opendrift:2062: 0 elements scheduled.
14:20:19 DEBUG opendrift:2064: ======================================================================
14:20:19 DEBUG opendrift:2075: 60.01516894035073 <- latitude -> 60.55736100530443
14:20:19 DEBUG opendrift:2080: 4.557595604627849 <- longitude -> 4.89347922800377
14:20:19 DEBUG opendrift:2083: z = 0.0
14:20:19 DEBUG opendrift:2086: ---------------------------------
14:20:19 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:19 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:19 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:19 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:19 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:19 DEBUG opendrift.models.basemodel.environment:618: Data needed for 19969 elements
14:20:19 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 19969 elements
14:20:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:19 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:19 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:19 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:19 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:19 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:19 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:19 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:19 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:19 DEBUG opendrift.models.basemodel.environment:618: Data needed for 19969 elements
14:20:19 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 19969 elements
14:20:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:19 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:19 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:19 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:19 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:19 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:19 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:19 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:19 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:19 DEBUG opendrift.models.basemodel.environment:618: Data needed for 19969 elements
14:20:19 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 19969 elements
14:20:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:19 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:19 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:19 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:19 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:19 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:19 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:19 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:19 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:19 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.95694 (min) 0.95694 (max)
14:20:19 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.881921 (min) 0.881921 (max)
14:20:19 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:19 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:19 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:19 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:19 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:19 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:19 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:19 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:19 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:19 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:19 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:19 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:19 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:19 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:19 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:19 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:19 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:19 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:19 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:19 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:19 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:19 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:19 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 1 (max)
14:20:19 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:19 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:19 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:19 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:19 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:19 DEBUG opendrift:646: 147 elements hit land, moving them to the coastline.
14:20:19 DEBUG opendrift:1679: 147 elements scheduled for deactivation (stranded)
14:20:19 DEBUG opendrift:1681: (z: 0.000000 to 0.000000)
14:20:19 DEBUG opendrift:1699: Removed 147 elements.
14:20:19 DEBUG opendrift:1702: Removed 147 values from environment.
14:20:19 DEBUG opendrift:1707: remove items from profile for z
14:20:19 DEBUG opendrift:1707: remove items from profile for ocean_vertical_diffusivity
14:20:19 DEBUG opendrift:1711: Removed 147 values from environment_profiles.
14:20:19 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:20 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:20 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:20 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:20 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0011598415890844125 and 0.663569127987229 m/s
14:20:20 DEBUG opendrift:2144: 19822 active elements (178 deactivated)
14:20:20 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:20 DEBUG opendrift:2055: ======================================================================
14:20:20 INFO opendrift:2056: 2025-03-14 04:50:04.288590 - step 59 of 96 - 19822 active elements (178 deactivated)
14:20:20 DEBUG opendrift:2062: 0 elements scheduled.
14:20:20 DEBUG opendrift:2064: ======================================================================
14:20:20 DEBUG opendrift:2075: 60.022602328144444 <- latitude -> 60.56383058179528
14:20:20 DEBUG opendrift:2080: 4.570928409641429 <- longitude -> 4.910648966590038
14:20:20 DEBUG opendrift:2083: z = 0.0
14:20:20 DEBUG opendrift:2086: ---------------------------------
14:20:20 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:20 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:20 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:20 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:20 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:20 DEBUG opendrift.models.basemodel.environment:618: Data needed for 19822 elements
14:20:20 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 19822 elements
14:20:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:20 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:20 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:20 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:20 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:20 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:20 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:20 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:20 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:20 DEBUG opendrift.models.basemodel.environment:618: Data needed for 19822 elements
14:20:20 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 19822 elements
14:20:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:20 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:20 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:20 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:20 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:20 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:20 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:20 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:20 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:20 DEBUG opendrift.models.basemodel.environment:618: Data needed for 19822 elements
14:20:20 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 19822 elements
14:20:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:20 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:20 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:20 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:20 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:20 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:20 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:20 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:20 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:20 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.94693 (min) 0.94693 (max)
14:20:20 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.896873 (min) 0.896873 (max)
14:20:20 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:20 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:20 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:20 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:20 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:20 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:20 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:20 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:20 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:20 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:20 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:20 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:20 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:20 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:20 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:20 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:20 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:20 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:20 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:20 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:20 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:20 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:20 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 1 (max)
14:20:20 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:20 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:20 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:20 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:20 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:20 DEBUG opendrift:646: 336 elements hit land, moving them to the coastline.
14:20:20 DEBUG opendrift:1679: 336 elements scheduled for deactivation (stranded)
14:20:20 DEBUG opendrift:1681: (z: 0.000000 to 0.000000)
14:20:20 DEBUG opendrift:1699: Removed 336 elements.
14:20:20 DEBUG opendrift:1702: Removed 336 values from environment.
14:20:20 DEBUG opendrift:1707: remove items from profile for z
14:20:20 DEBUG opendrift:1707: remove items from profile for ocean_vertical_diffusivity
14:20:20 DEBUG opendrift:1711: Removed 336 values from environment_profiles.
14:20:20 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:20 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:20 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:20 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:20 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.00164897258768246 and 0.6523343715279821 m/s
14:20:20 DEBUG opendrift:2144: 19486 active elements (514 deactivated)
14:20:20 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:20 DEBUG opendrift:2055: ======================================================================
14:20:20 INFO opendrift:2056: 2025-03-14 05:05:04.288590 - step 60 of 96 - 19486 active elements (514 deactivated)
14:20:20 DEBUG opendrift:2062: 0 elements scheduled.
14:20:20 DEBUG opendrift:2064: ======================================================================
14:20:20 DEBUG opendrift:2075: 60.027476371231785 <- latitude -> 60.571685436771716
14:20:20 DEBUG opendrift:2080: 4.585213485994813 <- longitude -> 4.925514299116705
14:20:20 DEBUG opendrift:2083: z = 0.0
14:20:20 DEBUG opendrift:2086: ---------------------------------
14:20:20 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:20 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:20 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:20 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:20 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:20 DEBUG opendrift.models.basemodel.environment:618: Data needed for 19486 elements
14:20:20 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 19486 elements
14:20:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:20 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:20 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:20 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:20 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:20 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:20 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:20 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:20 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:20 DEBUG opendrift.models.basemodel.environment:618: Data needed for 19486 elements
14:20:20 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 19486 elements
14:20:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:20 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:20 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:20 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:20 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:20 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:20 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:20 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:20 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:20 DEBUG opendrift.models.basemodel.environment:618: Data needed for 19486 elements
14:20:20 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 19486 elements
14:20:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:20 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:20 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:20 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:20 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:20 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:20 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:20 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:20 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:20 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.935906 (min) 0.935906 (max)
14:20:20 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.910864 (min) 0.910864 (max)
14:20:20 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:20 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:20 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:20 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:20 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:20 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:20 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:20 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:20 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:20 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:20 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:20 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:20 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:20 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:20 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:20 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:20 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:20 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:20 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:20 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:20 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:20 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:20 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 1 (max)
14:20:20 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:20 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:20 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:20 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:20 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:20 DEBUG opendrift:646: 749 elements hit land, moving them to the coastline.
14:20:20 DEBUG opendrift:1679: 749 elements scheduled for deactivation (stranded)
14:20:20 DEBUG opendrift:1681: (z: 0.000000 to 0.000000)
14:20:20 DEBUG opendrift:1699: Removed 749 elements.
14:20:20 DEBUG opendrift:1702: Removed 749 values from environment.
14:20:20 DEBUG opendrift:1707: remove items from profile for z
14:20:20 DEBUG opendrift:1707: remove items from profile for ocean_vertical_diffusivity
14:20:20 DEBUG opendrift:1711: Removed 749 values from environment_profiles.
14:20:20 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:20 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:20 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:20 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:20 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0013272287265555032 and 0.7594377401004461 m/s
14:20:20 DEBUG opendrift:2144: 18737 active elements (1263 deactivated)
14:20:20 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:20 DEBUG opendrift:2055: ======================================================================
14:20:20 INFO opendrift:2056: 2025-03-14 05:20:04.288590 - step 61 of 96 - 18737 active elements (1263 deactivated)
14:20:20 DEBUG opendrift:2062: 0 elements scheduled.
14:20:20 DEBUG opendrift:2064: ======================================================================
14:20:20 DEBUG opendrift:2075: 60.03479416438529 <- latitude -> 60.578137762092794
14:20:20 DEBUG opendrift:2080: 4.601259214723522 <- longitude -> 4.941896291331717
14:20:20 DEBUG opendrift:2083: z = 0.0
14:20:20 DEBUG opendrift:2086: ---------------------------------
14:20:20 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:20 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:20 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:20 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:20 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:20 DEBUG opendrift.models.basemodel.environment:618: Data needed for 18737 elements
14:20:20 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 18737 elements
14:20:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:20 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:20 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:20 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:20 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:20 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:20 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:20 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:20 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:20 DEBUG opendrift.models.basemodel.environment:618: Data needed for 18737 elements
14:20:20 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 18737 elements
14:20:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:20 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:20 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:20 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:20 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:20 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:20 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:20 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:20 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:20 DEBUG opendrift.models.basemodel.environment:618: Data needed for 18737 elements
14:20:20 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 18737 elements
14:20:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:21 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:21 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:21 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:21 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:21 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:21 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:21 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:21 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:21 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.92388 (min) 0.92388 (max)
14:20:21 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.92388 (min) 0.92388 (max)
14:20:21 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:21 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:21 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:21 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:21 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:21 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:21 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:21 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:21 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:21 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:21 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:21 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:21 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:21 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:21 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:21 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:21 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:21 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:21 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:21 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:21 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:21 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:21 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 1 (max)
14:20:21 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:21 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:21 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:21 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:21 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:21 DEBUG opendrift:646: 2076 elements hit land, moving them to the coastline.
14:20:21 DEBUG opendrift:1679: 2076 elements scheduled for deactivation (stranded)
14:20:21 DEBUG opendrift:1681: (z: 0.000000 to 0.000000)
14:20:22 DEBUG opendrift:1699: Removed 2076 elements.
14:20:22 DEBUG opendrift:1702: Removed 2076 values from environment.
14:20:22 DEBUG opendrift:1707: remove items from profile for z
14:20:22 DEBUG opendrift:1707: remove items from profile for ocean_vertical_diffusivity
14:20:22 DEBUG opendrift:1711: Removed 2076 values from environment_profiles.
14:20:22 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:22 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:22 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:22 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:22 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0016511758340700016 and 0.684031226724656 m/s
14:20:22 DEBUG opendrift:2144: 16661 active elements (3339 deactivated)
14:20:22 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:22 DEBUG opendrift:2055: ======================================================================
14:20:22 INFO opendrift:2056: 2025-03-14 05:35:04.288590 - step 62 of 96 - 16661 active elements (3339 deactivated)
14:20:22 DEBUG opendrift:2062: 0 elements scheduled.
14:20:22 DEBUG opendrift:2064: ======================================================================
14:20:22 DEBUG opendrift:2075: 60.04046190548843 <- latitude -> 60.58627949303194
14:20:22 DEBUG opendrift:2080: 4.614503812843627 <- longitude -> 4.9454774574322045
14:20:22 DEBUG opendrift:2083: z = 0.0
14:20:22 DEBUG opendrift:2086: ---------------------------------
14:20:22 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:22 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:22 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:22 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:22 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:22 DEBUG opendrift.models.basemodel.environment:618: Data needed for 16661 elements
14:20:22 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 16661 elements
14:20:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:22 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:22 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:22 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:22 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:22 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:22 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:22 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:22 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:22 DEBUG opendrift.models.basemodel.environment:618: Data needed for 16661 elements
14:20:22 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 16661 elements
14:20:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:22 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:22 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:22 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:22 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:22 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:22 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:22 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:22 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:22 DEBUG opendrift.models.basemodel.environment:618: Data needed for 16661 elements
14:20:22 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 16661 elements
14:20:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:22 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:22 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:22 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:22 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:22 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:22 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:22 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:22 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:22 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.910864 (min) 0.910864 (max)
14:20:22 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.935906 (min) 0.935906 (max)
14:20:22 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:22 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:22 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:22 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:22 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:22 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:22 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:22 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:22 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:22 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:22 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:22 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:22 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:22 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:22 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:22 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:22 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:22 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:22 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:22 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:22 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:22 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:22 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 1 (max)
14:20:22 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:22 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:22 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:22 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:22 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:22 DEBUG opendrift:646: 2844 elements hit land, moving them to the coastline.
14:20:22 DEBUG opendrift:1679: 2844 elements scheduled for deactivation (stranded)
14:20:22 DEBUG opendrift:1681: (z: 0.000000 to 0.000000)
14:20:24 DEBUG opendrift:1699: Removed 2844 elements.
14:20:24 DEBUG opendrift:1702: Removed 2844 values from environment.
14:20:24 DEBUG opendrift:1707: remove items from profile for z
14:20:24 DEBUG opendrift:1707: remove items from profile for ocean_vertical_diffusivity
14:20:24 DEBUG opendrift:1711: Removed 2844 values from environment_profiles.
14:20:24 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:24 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:24 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:24 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:24 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0007569779142612818 and 0.6531890048392434 m/s
14:20:24 DEBUG opendrift:2144: 13817 active elements (6183 deactivated)
14:20:24 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:24 DEBUG opendrift:2055: ======================================================================
14:20:24 INFO opendrift:2056: 2025-03-14 05:50:04.288590 - step 63 of 96 - 13817 active elements (6183 deactivated)
14:20:24 DEBUG opendrift:2062: 0 elements scheduled.
14:20:24 DEBUG opendrift:2064: ======================================================================
14:20:24 DEBUG opendrift:2075: 60.04705390863013 <- latitude -> 60.59213806034236
14:20:24 DEBUG opendrift:2080: 4.629558694678739 <- longitude -> 4.960712187667831
14:20:24 DEBUG opendrift:2083: z = 0.0
14:20:24 DEBUG opendrift:2086: ---------------------------------
14:20:24 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:24 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:24 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:24 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:24 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:24 DEBUG opendrift.models.basemodel.environment:618: Data needed for 13817 elements
14:20:24 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 13817 elements
14:20:24 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:24 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:24 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:24 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:24 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:24 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:24 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:24 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:24 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:24 DEBUG opendrift.models.basemodel.environment:618: Data needed for 13817 elements
14:20:24 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 13817 elements
14:20:24 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:24 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:24 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:24 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:24 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:24 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:24 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:24 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:24 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:24 DEBUG opendrift.models.basemodel.environment:618: Data needed for 13817 elements
14:20:24 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 13817 elements
14:20:24 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:24 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:24 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:24 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:24 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:24 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:24 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:24 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:24 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:24 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.896873 (min) 0.896873 (max)
14:20:24 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.94693 (min) 0.94693 (max)
14:20:24 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:24 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:24 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:24 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:24 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:24 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:24 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:24 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:24 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:24 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:24 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:24 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:24 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:24 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:24 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:24 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:24 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:24 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:24 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:24 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:24 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:24 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:24 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 1 (max)
14:20:24 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:24 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:24 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:24 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:24 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:24 DEBUG opendrift:646: 1965 elements hit land, moving them to the coastline.
14:20:24 DEBUG opendrift:1679: 1965 elements scheduled for deactivation (stranded)
14:20:24 DEBUG opendrift:1681: (z: 0.000000 to 0.000000)
14:20:25 DEBUG opendrift:1699: Removed 1965 elements.
14:20:25 DEBUG opendrift:1702: Removed 1965 values from environment.
14:20:25 DEBUG opendrift:1707: remove items from profile for z
14:20:25 DEBUG opendrift:1707: remove items from profile for ocean_vertical_diffusivity
14:20:25 DEBUG opendrift:1711: Removed 1965 values from environment_profiles.
14:20:25 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:25 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:25 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:25 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:25 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0018089601521269901 and 0.6546975323774888 m/s
14:20:25 DEBUG opendrift:2144: 11852 active elements (8148 deactivated)
14:20:25 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:25 DEBUG opendrift:2055: ======================================================================
14:20:25 INFO opendrift:2056: 2025-03-14 06:05:04.288590 - step 64 of 96 - 11852 active elements (8148 deactivated)
14:20:25 DEBUG opendrift:2062: 0 elements scheduled.
14:20:25 DEBUG opendrift:2064: ======================================================================
14:20:25 DEBUG opendrift:2075: 60.05771703452811 <- latitude -> 60.5935609717592
14:20:25 DEBUG opendrift:2080: 4.64539100427347 <- longitude -> 4.979306387181827
14:20:25 DEBUG opendrift:2083: z = 0.0
14:20:25 DEBUG opendrift:2086: ---------------------------------
14:20:25 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:25 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:25 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:25 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:25 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:25 DEBUG opendrift.models.basemodel.environment:618: Data needed for 11852 elements
14:20:25 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 11852 elements
14:20:25 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:25 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:25 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:25 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:25 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:25 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:25 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:25 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:25 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:25 DEBUG opendrift.models.basemodel.environment:618: Data needed for 11852 elements
14:20:25 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 11852 elements
14:20:25 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:25 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:25 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:25 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:25 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:25 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:25 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:25 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:25 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:25 DEBUG opendrift.models.basemodel.environment:618: Data needed for 11852 elements
14:20:25 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 11852 elements
14:20:25 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:25 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:25 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:25 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:25 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:25 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:25 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:25 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:25 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:25 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.881921 (min) 0.881921 (max)
14:20:25 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.95694 (min) 0.95694 (max)
14:20:25 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:25 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:25 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:25 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:25 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:25 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:25 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:25 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:25 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:25 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:25 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:25 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:25 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:25 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:25 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:25 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:25 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:25 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:25 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:25 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:25 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:25 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:25 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 1 (max)
14:20:25 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:25 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:25 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:25 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:25 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:25 DEBUG opendrift:646: 995 elements hit land, moving them to the coastline.
14:20:25 DEBUG opendrift:1679: 995 elements scheduled for deactivation (stranded)
14:20:25 DEBUG opendrift:1681: (z: 0.000000 to 0.000000)
14:20:26 DEBUG opendrift:1699: Removed 995 elements.
14:20:26 DEBUG opendrift:1702: Removed 995 values from environment.
14:20:26 DEBUG opendrift:1707: remove items from profile for z
14:20:26 DEBUG opendrift:1707: remove items from profile for ocean_vertical_diffusivity
14:20:26 DEBUG opendrift:1711: Removed 995 values from environment_profiles.
14:20:26 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:26 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:26 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:26 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:26 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.00098800643290302 and 0.663937184290865 m/s
14:20:26 DEBUG opendrift:2144: 10857 active elements (9143 deactivated)
14:20:26 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:26 DEBUG opendrift:2055: ======================================================================
14:20:26 INFO opendrift:2056: 2025-03-14 06:20:04.288590 - step 65 of 96 - 10857 active elements (9143 deactivated)
14:20:26 DEBUG opendrift:2062: 0 elements scheduled.
14:20:26 DEBUG opendrift:2064: ======================================================================
14:20:26 DEBUG opendrift:2075: 60.06386488273306 <- latitude -> 60.600607199656835
14:20:26 DEBUG opendrift:2080: 4.660323696647714 <- longitude -> 4.996376434077549
14:20:26 DEBUG opendrift:2083: z = 0.0
14:20:26 DEBUG opendrift:2086: ---------------------------------
14:20:26 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:26 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:26 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:26 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:26 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:26 DEBUG opendrift.models.basemodel.environment:618: Data needed for 10857 elements
14:20:26 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 10857 elements
14:20:26 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:26 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:26 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:26 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:26 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:26 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:26 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:26 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:26 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:26 DEBUG opendrift.models.basemodel.environment:618: Data needed for 10857 elements
14:20:26 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 10857 elements
14:20:26 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:26 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:26 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:26 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:26 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:26 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:26 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:26 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:26 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:26 DEBUG opendrift.models.basemodel.environment:618: Data needed for 10857 elements
14:20:26 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 10857 elements
14:20:26 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:26 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:26 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:26 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:26 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:26 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:26 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:26 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:26 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:26 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.866025 (min) 0.866025 (max)
14:20:26 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.965926 (min) 0.965926 (max)
14:20:26 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:26 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:26 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:26 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:26 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:26 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:26 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:26 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:26 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:26 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:26 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:26 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:26 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:26 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:26 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:26 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:26 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:26 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:26 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:26 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:26 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:26 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:26 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 1 (max)
14:20:26 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:26 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:26 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:26 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:26 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:26 DEBUG opendrift:646: 358 elements hit land, moving them to the coastline.
14:20:26 DEBUG opendrift:1679: 358 elements scheduled for deactivation (stranded)
14:20:26 DEBUG opendrift:1681: (z: 0.000000 to 0.000000)
14:20:26 DEBUG opendrift:1699: Removed 358 elements.
14:20:26 DEBUG opendrift:1702: Removed 358 values from environment.
14:20:26 DEBUG opendrift:1707: remove items from profile for z
14:20:26 DEBUG opendrift:1707: remove items from profile for ocean_vertical_diffusivity
14:20:26 DEBUG opendrift:1711: Removed 358 values from environment_profiles.
14:20:26 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:26 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:26 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:26 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:26 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0011333363261569228 and 0.6430834906825046 m/s
14:20:26 DEBUG opendrift:2144: 10499 active elements (9501 deactivated)
14:20:26 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:26 DEBUG opendrift:2055: ======================================================================
14:20:26 INFO opendrift:2056: 2025-03-14 06:35:04.288590 - step 66 of 96 - 10499 active elements (9501 deactivated)
14:20:26 DEBUG opendrift:2062: 0 elements scheduled.
14:20:26 DEBUG opendrift:2064: ======================================================================
14:20:26 DEBUG opendrift:2075: 60.07125456697082 <- latitude -> 60.608621997474295
14:20:26 DEBUG opendrift:2080: 4.676752676660052 <- longitude -> 5.0113981560745575
14:20:26 DEBUG opendrift:2083: z = 0.0
14:20:26 DEBUG opendrift:2086: ---------------------------------
14:20:26 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:26 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:26 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:26 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:26 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:26 DEBUG opendrift.models.basemodel.environment:618: Data needed for 10499 elements
14:20:26 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 10499 elements
14:20:26 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:26 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:26 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:26 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:26 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:26 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:26 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:26 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:26 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:26 DEBUG opendrift.models.basemodel.environment:618: Data needed for 10499 elements
14:20:26 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 10499 elements
14:20:26 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:26 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:26 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:26 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:26 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:26 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:26 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:26 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:26 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:26 DEBUG opendrift.models.basemodel.environment:618: Data needed for 10499 elements
14:20:26 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 10499 elements
14:20:26 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:26 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:26 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:26 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:26 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:26 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:26 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:26 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:26 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:26 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.849202 (min) 0.849202 (max)
14:20:26 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.973877 (min) 0.973877 (max)
14:20:26 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:26 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:26 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:26 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:26 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:26 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:26 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:26 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:26 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:26 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:26 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:26 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:26 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:26 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:26 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:26 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:26 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:26 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:26 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:26 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:26 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:26 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:26 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 1 (max)
14:20:26 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:26 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:26 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:26 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:26 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:26 DEBUG opendrift:646: 197 elements hit land, moving them to the coastline.
14:20:26 DEBUG opendrift:1679: 197 elements scheduled for deactivation (stranded)
14:20:26 DEBUG opendrift:1681: (z: 0.000000 to 0.000000)
14:20:27 DEBUG opendrift:1699: Removed 197 elements.
14:20:27 DEBUG opendrift:1702: Removed 197 values from environment.
14:20:27 DEBUG opendrift:1707: remove items from profile for z
14:20:27 DEBUG opendrift:1707: remove items from profile for ocean_vertical_diffusivity
14:20:27 DEBUG opendrift:1711: Removed 197 values from environment_profiles.
14:20:27 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:27 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:27 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:27 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:27 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0025688858155714198 and 0.697840524171302 m/s
14:20:27 DEBUG opendrift:2144: 10302 active elements (9698 deactivated)
14:20:27 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:27 DEBUG opendrift:2055: ======================================================================
14:20:27 INFO opendrift:2056: 2025-03-14 06:50:04.288590 - step 67 of 96 - 10302 active elements (9698 deactivated)
14:20:27 DEBUG opendrift:2062: 0 elements scheduled.
14:20:27 DEBUG opendrift:2064: ======================================================================
14:20:27 DEBUG opendrift:2075: 60.07878719635142 <- latitude -> 60.603995010967424
14:20:27 DEBUG opendrift:2080: 4.692632038159023 <- longitude -> 5.007923860581711
14:20:27 DEBUG opendrift:2083: z = 0.0
14:20:27 DEBUG opendrift:2086: ---------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:27 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:27 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:618: Data needed for 10302 elements
14:20:27 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 10302 elements
14:20:27 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:27 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:27 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:27 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:27 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:27 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:27 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:618: Data needed for 10302 elements
14:20:27 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 10302 elements
14:20:27 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:27 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:27 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:27 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:27 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:27 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:27 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:618: Data needed for 10302 elements
14:20:27 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 10302 elements
14:20:27 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:27 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:27 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:27 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:27 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:27 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:27 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:27 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:27 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.83147 (min) 0.83147 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.980785 (min) 0.980785 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 1 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:27 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:27 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:27 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:27 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:27 DEBUG opendrift:646: 114 elements hit land, moving them to the coastline.
14:20:27 DEBUG opendrift:1679: 114 elements scheduled for deactivation (stranded)
14:20:27 DEBUG opendrift:1681: (z: 0.000000 to 0.000000)
14:20:27 DEBUG opendrift:1699: Removed 114 elements.
14:20:27 DEBUG opendrift:1702: Removed 114 values from environment.
14:20:27 DEBUG opendrift:1707: remove items from profile for z
14:20:27 DEBUG opendrift:1707: remove items from profile for ocean_vertical_diffusivity
14:20:27 DEBUG opendrift:1711: Removed 114 values from environment_profiles.
14:20:27 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:27 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:27 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:27 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:27 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0009320201089410899 and 0.6058736669927178 m/s
14:20:27 DEBUG opendrift:2144: 10188 active elements (9812 deactivated)
14:20:27 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:27 DEBUG opendrift:2055: ======================================================================
14:20:27 INFO opendrift:2056: 2025-03-14 07:05:04.288590 - step 68 of 96 - 10188 active elements (9812 deactivated)
14:20:27 DEBUG opendrift:2062: 0 elements scheduled.
14:20:27 DEBUG opendrift:2064: ======================================================================
14:20:27 DEBUG opendrift:2075: 60.08668300283804 <- latitude -> 60.61389420811267
14:20:27 DEBUG opendrift:2080: 4.705651872219394 <- longitude -> 5.00939722243406
14:20:27 DEBUG opendrift:2083: z = 0.0
14:20:27 DEBUG opendrift:2086: ---------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:27 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:27 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:618: Data needed for 10188 elements
14:20:27 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 10188 elements
14:20:27 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:27 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:27 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:27 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:27 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:27 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:27 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:618: Data needed for 10188 elements
14:20:27 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 10188 elements
14:20:27 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:27 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:27 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:27 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:27 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:27 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:27 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:618: Data needed for 10188 elements
14:20:27 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 10188 elements
14:20:27 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:27 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:27 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:27 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:27 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:27 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:27 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:27 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:27 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.812847 (min) 0.812847 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.986643 (min) 0.986643 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 1 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:27 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:27 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:27 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:27 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:27 DEBUG opendrift:646: 73 elements hit land, moving them to the coastline.
14:20:27 DEBUG opendrift:1679: 73 elements scheduled for deactivation (stranded)
14:20:27 DEBUG opendrift:1681: (z: 0.000000 to 0.000000)
14:20:27 DEBUG opendrift:1699: Removed 73 elements.
14:20:27 DEBUG opendrift:1702: Removed 73 values from environment.
14:20:27 DEBUG opendrift:1707: remove items from profile for z
14:20:27 DEBUG opendrift:1707: remove items from profile for ocean_vertical_diffusivity
14:20:27 DEBUG opendrift:1711: Removed 73 values from environment_profiles.
14:20:27 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:27 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:27 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:27 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:27 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.003703570430123482 and 0.6498524702802314 m/s
14:20:27 DEBUG opendrift:2144: 10115 active elements (9885 deactivated)
14:20:27 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:27 DEBUG opendrift:2055: ======================================================================
14:20:27 INFO opendrift:2056: 2025-03-14 07:20:04.288590 - step 69 of 96 - 10115 active elements (9885 deactivated)
14:20:27 DEBUG opendrift:2062: 0 elements scheduled.
14:20:27 DEBUG opendrift:2064: ======================================================================
14:20:27 DEBUG opendrift:2075: 60.094187693321395 <- latitude -> 60.62133421673067
14:20:27 DEBUG opendrift:2080: 4.714678442413339 <- longitude -> 5.0125188363076365
14:20:27 DEBUG opendrift:2083: z = 0.0
14:20:27 DEBUG opendrift:2086: ---------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:27 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:27 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:618: Data needed for 10115 elements
14:20:27 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 10115 elements
14:20:27 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:27 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:27 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:27 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:27 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:27 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:27 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:618: Data needed for 10115 elements
14:20:27 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 10115 elements
14:20:27 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:27 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:27 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:27 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:27 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:27 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:27 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:618: Data needed for 10115 elements
14:20:27 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 10115 elements
14:20:27 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:27 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:27 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:27 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:27 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:27 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:27 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:27 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:27 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.793353 (min) 0.793353 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.991445 (min) 0.991445 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 1 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:27 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:27 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:27 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:27 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:27 DEBUG opendrift:646: 36 elements hit land, moving them to the coastline.
14:20:27 DEBUG opendrift:1679: 36 elements scheduled for deactivation (stranded)
14:20:27 DEBUG opendrift:1681: (z: 0.000000 to 0.000000)
14:20:27 DEBUG opendrift:1699: Removed 36 elements.
14:20:27 DEBUG opendrift:1702: Removed 36 values from environment.
14:20:27 DEBUG opendrift:1707: remove items from profile for z
14:20:27 DEBUG opendrift:1707: remove items from profile for ocean_vertical_diffusivity
14:20:27 DEBUG opendrift:1711: Removed 36 values from environment_profiles.
14:20:27 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:27 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:27 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:27 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:27 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.003969870087277251 and 0.6243343314043794 m/s
14:20:27 DEBUG opendrift:2144: 10079 active elements (9921 deactivated)
14:20:27 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:27 DEBUG opendrift:2055: ======================================================================
14:20:27 INFO opendrift:2056: 2025-03-14 07:35:04.288590 - step 70 of 96 - 10079 active elements (9921 deactivated)
14:20:27 DEBUG opendrift:2062: 0 elements scheduled.
14:20:27 DEBUG opendrift:2064: ======================================================================
14:20:27 DEBUG opendrift:2075: 60.09966605283201 <- latitude -> 60.630346947269196
14:20:27 DEBUG opendrift:2080: 4.72896899633979 <- longitude -> 5.0086615303856
14:20:27 DEBUG opendrift:2083: z = 0.0
14:20:27 DEBUG opendrift:2086: ---------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:27 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:27 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:618: Data needed for 10079 elements
14:20:27 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 10079 elements
14:20:27 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:27 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:27 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:27 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:27 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:27 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:27 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:618: Data needed for 10079 elements
14:20:27 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 10079 elements
14:20:27 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:27 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:27 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:27 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:27 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:27 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:27 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:618: Data needed for 10079 elements
14:20:27 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 10079 elements
14:20:27 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:27 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:27 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:27 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:27 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:27 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:27 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:27 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:27 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.77301 (min) 0.77301 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.995185 (min) 0.995185 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 1 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:27 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:27 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:27 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:27 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:27 DEBUG opendrift:646: 38 elements hit land, moving them to the coastline.
14:20:27 DEBUG opendrift:1679: 38 elements scheduled for deactivation (stranded)
14:20:27 DEBUG opendrift:1681: (z: 0.000000 to 0.000000)
14:20:27 DEBUG opendrift:1699: Removed 38 elements.
14:20:27 DEBUG opendrift:1702: Removed 38 values from environment.
14:20:27 DEBUG opendrift:1707: remove items from profile for z
14:20:27 DEBUG opendrift:1707: remove items from profile for ocean_vertical_diffusivity
14:20:27 DEBUG opendrift:1711: Removed 38 values from environment_profiles.
14:20:27 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:27 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:27 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:27 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:27 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.001138025570186333 and 0.6622485975234808 m/s
14:20:27 DEBUG opendrift:2144: 10041 active elements (9959 deactivated)
14:20:27 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:27 DEBUG opendrift:2055: ======================================================================
14:20:27 INFO opendrift:2056: 2025-03-14 07:50:04.288590 - step 71 of 96 - 10041 active elements (9959 deactivated)
14:20:27 DEBUG opendrift:2062: 0 elements scheduled.
14:20:27 DEBUG opendrift:2064: ======================================================================
14:20:27 DEBUG opendrift:2075: 60.107158890432245 <- latitude -> 60.63891100088855
14:20:27 DEBUG opendrift:2080: 4.738962333126447 <- longitude -> 5.022162721155693
14:20:27 DEBUG opendrift:2083: z = 0.0
14:20:27 DEBUG opendrift:2086: ---------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:27 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:27 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:618: Data needed for 10041 elements
14:20:27 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 10041 elements
14:20:27 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:27 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:27 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:27 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:27 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:27 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:27 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:618: Data needed for 10041 elements
14:20:27 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 10041 elements
14:20:27 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:27 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:27 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:27 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:27 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:27 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:27 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:618: Data needed for 10041 elements
14:20:27 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 10041 elements
14:20:27 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:27 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:27 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:27 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:27 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:27 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:27 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:27 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:27 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.75184 (min) 0.75184 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.997859 (min) 0.997859 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 1 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:27 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:27 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:27 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:27 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:27 DEBUG opendrift:646: 7 elements hit land, moving them to the coastline.
14:20:27 DEBUG opendrift:1679: 7 elements scheduled for deactivation (stranded)
14:20:27 DEBUG opendrift:1681: (z: 0.000000 to 0.000000)
14:20:27 DEBUG opendrift:1699: Removed 7 elements.
14:20:27 DEBUG opendrift:1702: Removed 7 values from environment.
14:20:27 DEBUG opendrift:1707: remove items from profile for z
14:20:27 DEBUG opendrift:1707: remove items from profile for ocean_vertical_diffusivity
14:20:27 DEBUG opendrift:1711: Removed 7 values from environment_profiles.
14:20:27 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:27 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:27 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:27 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:27 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.00016322267094997023 and 0.6089492139668994 m/s
14:20:27 DEBUG opendrift:2144: 10034 active elements (9966 deactivated)
14:20:27 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:27 DEBUG opendrift:2055: ======================================================================
14:20:27 INFO opendrift:2056: 2025-03-14 08:05:04.288590 - step 72 of 96 - 10034 active elements (9966 deactivated)
14:20:27 DEBUG opendrift:2062: 0 elements scheduled.
14:20:27 DEBUG opendrift:2064: ======================================================================
14:20:27 DEBUG opendrift:2075: 60.11512901884565 <- latitude -> 60.649053449791325
14:20:27 DEBUG opendrift:2080: 4.753019053492813 <- longitude -> 5.0010203169893295
14:20:27 DEBUG opendrift:2083: z = 0.0
14:20:27 DEBUG opendrift:2086: ---------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:27 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:27 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:618: Data needed for 10034 elements
14:20:27 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 10034 elements
14:20:27 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:27 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:27 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:27 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:27 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:27 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:27 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:618: Data needed for 10034 elements
14:20:27 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 10034 elements
14:20:27 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:27 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:27 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:27 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:27 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:27 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:27 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:618: Data needed for 10034 elements
14:20:27 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 10034 elements
14:20:27 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:27 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:27 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:27 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:27 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:27 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:27 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:27 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:27 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.729864 (min) 0.729864 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.999465 (min) 0.999465 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 1 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:27 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:27 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:27 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:27 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:27 DEBUG opendrift:646: 5 elements hit land, moving them to the coastline.
14:20:27 DEBUG opendrift:1679: 5 elements scheduled for deactivation (stranded)
14:20:27 DEBUG opendrift:1681: (z: 0.000000 to 0.000000)
14:20:27 DEBUG opendrift:1699: Removed 5 elements.
14:20:27 DEBUG opendrift:1702: Removed 5 values from environment.
14:20:27 DEBUG opendrift:1707: remove items from profile for z
14:20:27 DEBUG opendrift:1707: remove items from profile for ocean_vertical_diffusivity
14:20:27 DEBUG opendrift:1711: Removed 5 values from environment_profiles.
14:20:27 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:27 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:27 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:27 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:27 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0022564047625173718 and 0.6825196278601715 m/s
14:20:27 DEBUG opendrift:2144: 10029 active elements (9971 deactivated)
14:20:27 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:27 DEBUG opendrift:2055: ======================================================================
14:20:27 INFO opendrift:2056: 2025-03-14 08:20:04.288590 - step 73 of 96 - 10029 active elements (9971 deactivated)
14:20:27 DEBUG opendrift:2062: 0 elements scheduled.
14:20:27 DEBUG opendrift:2064: ======================================================================
14:20:27 DEBUG opendrift:2075: 60.120877383452864 <- latitude -> 60.652143533534044
14:20:27 DEBUG opendrift:2080: 4.761647673802514 <- longitude -> 5.005712084013122
14:20:27 DEBUG opendrift:2083: z = 0.0
14:20:27 DEBUG opendrift:2086: ---------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:27 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:27 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:618: Data needed for 10029 elements
14:20:27 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 10029 elements
14:20:27 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:27 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:27 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:27 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:27 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:27 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:27 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:618: Data needed for 10029 elements
14:20:27 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 10029 elements
14:20:27 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:27 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:27 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:27 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:27 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:27 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:27 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:618: Data needed for 10029 elements
14:20:27 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 10029 elements
14:20:27 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:27 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:27 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:27 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:27 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:27 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:27 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:27 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:27 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:27 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.707107 (min) 0.707107 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 1 (min) 1 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 1 (max)
14:20:27 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:27 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:27 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:27 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:27 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:27 DEBUG opendrift:646: 13 elements hit land, moving them to the coastline.
14:20:27 DEBUG opendrift:1679: 13 elements scheduled for deactivation (stranded)
14:20:27 DEBUG opendrift:1681: (z: 0.000000 to 0.000000)
14:20:28 DEBUG opendrift:1699: Removed 13 elements.
14:20:28 DEBUG opendrift:1702: Removed 13 values from environment.
14:20:28 DEBUG opendrift:1707: remove items from profile for z
14:20:28 DEBUG opendrift:1707: remove items from profile for ocean_vertical_diffusivity
14:20:28 DEBUG opendrift:1711: Removed 13 values from environment_profiles.
14:20:28 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:28 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:28 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:28 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:28 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0010065387997015127 and 0.6298916356404459 m/s
14:20:28 DEBUG opendrift:2144: 10016 active elements (9984 deactivated)
14:20:28 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:28 DEBUG opendrift:2055: ======================================================================
14:20:28 INFO opendrift:2056: 2025-03-14 08:35:04.288590 - step 74 of 96 - 10016 active elements (9984 deactivated)
14:20:28 DEBUG opendrift:2062: 0 elements scheduled.
14:20:28 DEBUG opendrift:2064: ======================================================================
14:20:28 DEBUG opendrift:2075: 60.1297246271362 <- latitude -> 60.654431931997365
14:20:28 DEBUG opendrift:2080: 4.773651821142365 <- longitude -> 4.963947427390361
14:20:28 DEBUG opendrift:2083: z = 0.0
14:20:28 DEBUG opendrift:2086: ---------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:28 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:28 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:618: Data needed for 10016 elements
14:20:28 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 10016 elements
14:20:28 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:28 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:28 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:28 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:28 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:28 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:28 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:618: Data needed for 10016 elements
14:20:28 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 10016 elements
14:20:28 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:28 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:28 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:28 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:28 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:28 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:28 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:618: Data needed for 10016 elements
14:20:28 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 10016 elements
14:20:28 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:28 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:28 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:28 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:28 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:28 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:28 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:28 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:28 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.683592 (min) 0.683592 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.999465 (min) 0.999465 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 1 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:28 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:28 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:28 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:28 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:28 DEBUG opendrift:646: 11 elements hit land, moving them to the coastline.
14:20:28 DEBUG opendrift:1679: 11 elements scheduled for deactivation (stranded)
14:20:28 DEBUG opendrift:1681: (z: 0.000000 to 0.000000)
14:20:28 DEBUG opendrift:1699: Removed 11 elements.
14:20:28 DEBUG opendrift:1702: Removed 11 values from environment.
14:20:28 DEBUG opendrift:1707: remove items from profile for z
14:20:28 DEBUG opendrift:1707: remove items from profile for ocean_vertical_diffusivity
14:20:28 DEBUG opendrift:1711: Removed 11 values from environment_profiles.
14:20:28 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:28 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:28 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:28 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:28 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0028180305614185566 and 0.7584247039609127 m/s
14:20:28 DEBUG opendrift:2144: 10005 active elements (9995 deactivated)
14:20:28 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:28 DEBUG opendrift:2055: ======================================================================
14:20:28 INFO opendrift:2056: 2025-03-14 08:50:04.288590 - step 75 of 96 - 10005 active elements (9995 deactivated)
14:20:28 DEBUG opendrift:2062: 0 elements scheduled.
14:20:28 DEBUG opendrift:2064: ======================================================================
14:20:28 DEBUG opendrift:2075: 60.138652130260745 <- latitude -> 60.66312332219499
14:20:28 DEBUG opendrift:2080: 4.781434544665957 <- longitude -> 4.962932378987766
14:20:28 DEBUG opendrift:2083: z = 0.0
14:20:28 DEBUG opendrift:2086: ---------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:28 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:28 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:618: Data needed for 10005 elements
14:20:28 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 10005 elements
14:20:28 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:28 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:28 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:28 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:28 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:28 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:28 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:618: Data needed for 10005 elements
14:20:28 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 10005 elements
14:20:28 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:28 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:28 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:28 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:28 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:28 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:28 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:618: Data needed for 10005 elements
14:20:28 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 10005 elements
14:20:28 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:28 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:28 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:28 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:28 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:28 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:28 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:28 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:28 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.659346 (min) 0.659346 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.997859 (min) 0.997859 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 1 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:28 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:28 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:28 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:28 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:28 DEBUG opendrift:646: 4 elements hit land, moving them to the coastline.
14:20:28 DEBUG opendrift:1679: 4 elements scheduled for deactivation (stranded)
14:20:28 DEBUG opendrift:1681: (z: 0.000000 to 0.000000)
14:20:28 DEBUG opendrift:1699: Removed 4 elements.
14:20:28 DEBUG opendrift:1702: Removed 4 values from environment.
14:20:28 DEBUG opendrift:1707: remove items from profile for z
14:20:28 DEBUG opendrift:1707: remove items from profile for ocean_vertical_diffusivity
14:20:28 DEBUG opendrift:1711: Removed 4 values from environment_profiles.
14:20:28 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:28 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:28 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:28 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:28 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0017819557790387075 and 0.5742552817162931 m/s
14:20:28 DEBUG opendrift:2144: 10001 active elements (9999 deactivated)
14:20:28 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:28 DEBUG opendrift:2055: ======================================================================
14:20:28 INFO opendrift:2056: 2025-03-14 09:05:04.288590 - step 76 of 96 - 10001 active elements (9999 deactivated)
14:20:28 DEBUG opendrift:2062: 0 elements scheduled.
14:20:28 DEBUG opendrift:2064: ======================================================================
14:20:28 DEBUG opendrift:2075: 60.14621228356103 <- latitude -> 60.67080721872617
14:20:28 DEBUG opendrift:2080: 4.79189977204723 <- longitude -> 4.9690120483275955
14:20:28 DEBUG opendrift:2083: z = 0.0
14:20:28 DEBUG opendrift:2086: ---------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:28 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:28 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:618: Data needed for 10001 elements
14:20:28 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 10001 elements
14:20:28 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:28 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:28 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:28 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:28 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:28 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:28 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:618: Data needed for 10001 elements
14:20:28 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 10001 elements
14:20:28 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:28 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:28 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:28 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:28 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:28 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:28 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:618: Data needed for 10001 elements
14:20:28 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 10001 elements
14:20:28 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:28 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:28 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:28 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:28 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:28 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:28 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:28 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:28 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.634393 (min) 0.634393 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.995185 (min) 0.995185 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 1 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:28 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:28 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:28 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:28 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:28 DEBUG opendrift:646: 1 elements hit land, moving them to the coastline.
14:20:28 DEBUG opendrift:1679: 1 elements scheduled for deactivation (stranded)
14:20:28 DEBUG opendrift:1681: (z: 0.000000 to 0.000000)
14:20:28 DEBUG opendrift:1699: Removed 1 elements.
14:20:28 DEBUG opendrift:1702: Removed 1 values from environment.
14:20:28 DEBUG opendrift:1707: remove items from profile for z
14:20:28 DEBUG opendrift:1707: remove items from profile for ocean_vertical_diffusivity
14:20:28 DEBUG opendrift:1711: Removed 1 values from environment_profiles.
14:20:28 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:28 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:28 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:28 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:28 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0017411288922463033 and 0.6754836561544258 m/s
14:20:28 DEBUG opendrift:2144: 10000 active elements (10000 deactivated)
14:20:28 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:28 DEBUG opendrift:2055: ======================================================================
14:20:28 INFO opendrift:2056: 2025-03-14 09:20:04.288590 - step 77 of 96 - 10000 active elements (10000 deactivated)
14:20:28 DEBUG opendrift:2062: 0 elements scheduled.
14:20:28 DEBUG opendrift:2064: ======================================================================
14:20:28 DEBUG opendrift:2075: 60.154610745591306 <- latitude -> 60.24090836781586
14:20:28 DEBUG opendrift:2080: 4.802380445279484 <- longitude -> 4.955051183496528
14:20:28 DEBUG opendrift:2083: z = 0.0
14:20:28 DEBUG opendrift:2086: ---------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:28 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:28 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:618: Data needed for 10000 elements
14:20:28 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 10000 elements
14:20:28 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:28 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:28 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:28 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:28 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:28 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:28 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:618: Data needed for 10000 elements
14:20:28 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 10000 elements
14:20:28 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:28 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:28 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:28 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:28 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:28 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:28 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:618: Data needed for 10000 elements
14:20:28 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 10000 elements
14:20:28 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:28 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:28 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:28 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:28 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:28 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:28 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:28 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:28 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.608761 (min) 0.608761 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.991445 (min) 0.991445 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:28 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:28 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:28 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:28 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:28 DEBUG opendrift:643: No elements hit coastline.
14:20:28 DEBUG opendrift:1695: No elements to deactivate
14:20:28 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:28 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:28 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:28 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:28 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0016316951805623089 and 0.6161712620439994 m/s
14:20:28 DEBUG opendrift:2144: 10000 active elements (10000 deactivated)
14:20:28 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:28 DEBUG opendrift:2055: ======================================================================
14:20:28 INFO opendrift:2056: 2025-03-14 09:35:04.288590 - step 78 of 96 - 10000 active elements (10000 deactivated)
14:20:28 DEBUG opendrift:2062: 0 elements scheduled.
14:20:28 DEBUG opendrift:2064: ======================================================================
14:20:28 DEBUG opendrift:2075: 60.16104115623099 <- latitude -> 60.24873334529897
14:20:28 DEBUG opendrift:2080: 4.81359980041442 <- longitude -> 4.965662344112838
14:20:28 DEBUG opendrift:2083: z = 0.0
14:20:28 DEBUG opendrift:2086: ---------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:28 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:28 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:618: Data needed for 10000 elements
14:20:28 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 10000 elements
14:20:28 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:28 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:28 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:28 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:28 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:28 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:28 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:618: Data needed for 10000 elements
14:20:28 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 10000 elements
14:20:28 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:28 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:28 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:28 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:28 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:28 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:28 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:618: Data needed for 10000 elements
14:20:28 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 10000 elements
14:20:28 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:28 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:28 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:28 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:28 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:28 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:28 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:28 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:28 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.582478 (min) 0.582478 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.986643 (min) 0.986643 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:28 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:28 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:28 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:28 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:28 DEBUG opendrift:643: No elements hit coastline.
14:20:28 DEBUG opendrift:1695: No elements to deactivate
14:20:28 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:28 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:28 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:28 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:28 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0011315609477084564 and 0.6453528598856837 m/s
14:20:28 DEBUG opendrift:2144: 10000 active elements (10000 deactivated)
14:20:28 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:28 DEBUG opendrift:2055: ======================================================================
14:20:28 INFO opendrift:2056: 2025-03-14 09:50:04.288590 - step 79 of 96 - 10000 active elements (10000 deactivated)
14:20:28 DEBUG opendrift:2062: 0 elements scheduled.
14:20:28 DEBUG opendrift:2064: ======================================================================
14:20:28 DEBUG opendrift:2075: 60.16776132204732 <- latitude -> 60.25517245143351
14:20:28 DEBUG opendrift:2080: 4.823437205867456 <- longitude -> 4.975472791246022
14:20:28 DEBUG opendrift:2083: z = 0.0
14:20:28 DEBUG opendrift:2086: ---------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:28 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:28 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:618: Data needed for 10000 elements
14:20:28 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 10000 elements
14:20:28 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:28 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:28 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:28 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:28 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:28 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:28 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:618: Data needed for 10000 elements
14:20:28 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 10000 elements
14:20:28 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:28 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:28 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:28 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:28 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:28 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:28 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:618: Data needed for 10000 elements
14:20:28 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 10000 elements
14:20:28 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:28 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:28 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:28 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:28 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:28 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:28 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:28 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:28 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.55557 (min) 0.55557 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.980785 (min) 0.980785 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:28 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:28 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:28 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:28 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:28 DEBUG opendrift:643: No elements hit coastline.
14:20:28 DEBUG opendrift:1695: No elements to deactivate
14:20:28 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:28 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:28 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:28 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:28 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0019162957521953827 and 0.66099199464259 m/s
14:20:28 DEBUG opendrift:2144: 10000 active elements (10000 deactivated)
14:20:28 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:28 DEBUG opendrift:2055: ======================================================================
14:20:28 INFO opendrift:2056: 2025-03-14 10:05:04.288590 - step 80 of 96 - 10000 active elements (10000 deactivated)
14:20:28 DEBUG opendrift:2062: 0 elements scheduled.
14:20:28 DEBUG opendrift:2064: ======================================================================
14:20:28 DEBUG opendrift:2075: 60.17476003046137 <- latitude -> 60.26493738687179
14:20:28 DEBUG opendrift:2080: 4.832244329626095 <- longitude -> 4.983533311708361
14:20:28 DEBUG opendrift:2083: z = 0.0
14:20:28 DEBUG opendrift:2086: ---------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:28 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:28 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:618: Data needed for 10000 elements
14:20:28 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 10000 elements
14:20:28 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:28 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:28 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:28 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:28 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:28 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:28 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:618: Data needed for 10000 elements
14:20:28 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 10000 elements
14:20:28 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:28 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:28 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:28 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:28 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:28 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:28 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:618: Data needed for 10000 elements
14:20:28 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 10000 elements
14:20:28 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:28 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:28 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:28 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:28 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:28 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:28 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:28 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:28 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.528068 (min) 0.528068 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.973877 (min) 0.973877 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 1 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:28 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:28 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:28 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:28 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:28 DEBUG opendrift:646: 7 elements hit land, moving them to the coastline.
14:20:28 DEBUG opendrift:1679: 7 elements scheduled for deactivation (stranded)
14:20:28 DEBUG opendrift:1681: (z: 0.000000 to 0.000000)
14:20:28 DEBUG opendrift:1699: Removed 7 elements.
14:20:28 DEBUG opendrift:1702: Removed 7 values from environment.
14:20:28 DEBUG opendrift:1707: remove items from profile for z
14:20:28 DEBUG opendrift:1707: remove items from profile for ocean_vertical_diffusivity
14:20:28 DEBUG opendrift:1711: Removed 7 values from environment_profiles.
14:20:28 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:28 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:28 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:28 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:28 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0020865111364467112 and 0.6735607366679655 m/s
14:20:28 DEBUG opendrift:2144: 9993 active elements (10007 deactivated)
14:20:28 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:28 DEBUG opendrift:2055: ======================================================================
14:20:28 INFO opendrift:2056: 2025-03-14 10:20:04.288590 - step 81 of 96 - 9993 active elements (10007 deactivated)
14:20:28 DEBUG opendrift:2062: 0 elements scheduled.
14:20:28 DEBUG opendrift:2064: ======================================================================
14:20:28 DEBUG opendrift:2075: 60.181734108397386 <- latitude -> 60.27402683401938
14:20:28 DEBUG opendrift:2080: 4.837186793422494 <- longitude -> 4.992553348208745
14:20:28 DEBUG opendrift:2083: z = 0.0
14:20:28 DEBUG opendrift:2086: ---------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:28 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:28 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:618: Data needed for 9993 elements
14:20:28 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 9993 elements
14:20:28 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:28 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:28 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:28 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:28 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:28 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:28 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:618: Data needed for 9993 elements
14:20:28 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 9993 elements
14:20:28 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:28 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:28 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:28 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:28 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:28 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:28 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:618: Data needed for 9993 elements
14:20:28 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 9993 elements
14:20:28 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:28 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:28 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:28 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:28 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:28 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:28 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:28 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:28 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.5 (min) 0.5 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.965926 (min) 0.965926 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 1 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:28 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:28 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:28 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:28 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:28 DEBUG opendrift:646: 39 elements hit land, moving them to the coastline.
14:20:28 DEBUG opendrift:1679: 39 elements scheduled for deactivation (stranded)
14:20:28 DEBUG opendrift:1681: (z: 0.000000 to 0.000000)
14:20:28 DEBUG opendrift:1699: Removed 39 elements.
14:20:28 DEBUG opendrift:1702: Removed 39 values from environment.
14:20:28 DEBUG opendrift:1707: remove items from profile for z
14:20:28 DEBUG opendrift:1707: remove items from profile for ocean_vertical_diffusivity
14:20:28 DEBUG opendrift:1711: Removed 39 values from environment_profiles.
14:20:28 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:28 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:28 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:28 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:28 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.002538706838830736 and 0.7378004987242909 m/s
14:20:28 DEBUG opendrift:2144: 9954 active elements (10046 deactivated)
14:20:28 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:28 DEBUG opendrift:2055: ======================================================================
14:20:28 INFO opendrift:2056: 2025-03-14 10:35:04.288590 - step 82 of 96 - 9954 active elements (10046 deactivated)
14:20:28 DEBUG opendrift:2062: 0 elements scheduled.
14:20:28 DEBUG opendrift:2064: ======================================================================
14:20:28 DEBUG opendrift:2075: 60.18954190011114 <- latitude -> 60.28226487986757
14:20:28 DEBUG opendrift:2080: 4.845141520085432 <- longitude -> 5.000141810276659
14:20:28 DEBUG opendrift:2083: z = 0.0
14:20:28 DEBUG opendrift:2086: ---------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:28 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:28 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:618: Data needed for 9954 elements
14:20:28 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 9954 elements
14:20:28 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:28 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:28 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:28 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:28 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:28 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:28 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:618: Data needed for 9954 elements
14:20:28 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 9954 elements
14:20:28 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:28 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:28 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:28 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:28 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:28 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:28 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:618: Data needed for 9954 elements
14:20:28 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 9954 elements
14:20:28 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:28 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:28 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:28 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:28 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:28 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:28 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:28 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:28 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:28 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.471397 (min) 0.471397 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.95694 (min) 0.95694 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 1 (max)
14:20:28 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:28 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:28 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:28 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:28 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:28 DEBUG opendrift:646: 225 elements hit land, moving them to the coastline.
14:20:28 DEBUG opendrift:1679: 225 elements scheduled for deactivation (stranded)
14:20:28 DEBUG opendrift:1681: (z: 0.000000 to 0.000000)
14:20:29 DEBUG opendrift:1699: Removed 225 elements.
14:20:29 DEBUG opendrift:1702: Removed 225 values from environment.
14:20:29 DEBUG opendrift:1707: remove items from profile for z
14:20:29 DEBUG opendrift:1707: remove items from profile for ocean_vertical_diffusivity
14:20:29 DEBUG opendrift:1711: Removed 225 values from environment_profiles.
14:20:29 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:29 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:29 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:29 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:29 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.002150883722605878 and 0.636511853267026 m/s
14:20:29 DEBUG opendrift:2144: 9729 active elements (10271 deactivated)
14:20:29 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:29 DEBUG opendrift:2055: ======================================================================
14:20:29 INFO opendrift:2056: 2025-03-14 10:50:04.288590 - step 83 of 96 - 9729 active elements (10271 deactivated)
14:20:29 DEBUG opendrift:2062: 0 elements scheduled.
14:20:29 DEBUG opendrift:2064: ======================================================================
14:20:29 DEBUG opendrift:2075: 60.197272278511335 <- latitude -> 60.290161006088425
14:20:29 DEBUG opendrift:2080: 4.851257963960277 <- longitude -> 4.99595173973827
14:20:29 DEBUG opendrift:2083: z = 0.0
14:20:29 DEBUG opendrift:2086: ---------------------------------
14:20:29 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:29 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:29 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:29 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:29 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:29 DEBUG opendrift.models.basemodel.environment:618: Data needed for 9729 elements
14:20:29 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 9729 elements
14:20:29 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:29 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:29 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:29 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:29 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:29 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:29 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:29 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:29 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:29 DEBUG opendrift.models.basemodel.environment:618: Data needed for 9729 elements
14:20:29 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 9729 elements
14:20:29 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:29 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:29 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:29 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:29 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:29 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:29 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:29 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:29 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:29 DEBUG opendrift.models.basemodel.environment:618: Data needed for 9729 elements
14:20:29 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 9729 elements
14:20:29 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:29 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:29 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:29 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:29 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:29 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:29 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:29 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:29 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:29 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.442289 (min) 0.442289 (max)
14:20:29 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.94693 (min) 0.94693 (max)
14:20:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:29 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:29 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:29 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:29 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:29 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:29 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:29 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:29 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:29 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:29 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:29 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 1 (max)
14:20:29 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:29 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:29 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:29 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:29 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:29 DEBUG opendrift:646: 688 elements hit land, moving them to the coastline.
14:20:29 DEBUG opendrift:1679: 688 elements scheduled for deactivation (stranded)
14:20:29 DEBUG opendrift:1681: (z: 0.000000 to 0.000000)
14:20:29 DEBUG opendrift:1699: Removed 688 elements.
14:20:29 DEBUG opendrift:1702: Removed 688 values from environment.
14:20:29 DEBUG opendrift:1707: remove items from profile for z
14:20:29 DEBUG opendrift:1707: remove items from profile for ocean_vertical_diffusivity
14:20:29 DEBUG opendrift:1711: Removed 688 values from environment_profiles.
14:20:29 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:29 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:29 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:29 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:29 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.003719262309967598 and 0.626402984948736 m/s
14:20:29 DEBUG opendrift:2144: 9041 active elements (10959 deactivated)
14:20:29 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:29 DEBUG opendrift:2055: ======================================================================
14:20:29 INFO opendrift:2056: 2025-03-14 11:05:04.288590 - step 84 of 96 - 9041 active elements (10959 deactivated)
14:20:29 DEBUG opendrift:2062: 0 elements scheduled.
14:20:29 DEBUG opendrift:2064: ======================================================================
14:20:29 DEBUG opendrift:2075: 60.20586302483332 <- latitude -> 60.300189440943626
14:20:29 DEBUG opendrift:2080: 4.859973601644847 <- longitude -> 4.996941891076667
14:20:29 DEBUG opendrift:2083: z = 0.0
14:20:29 DEBUG opendrift:2086: ---------------------------------
14:20:29 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:29 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:29 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:29 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:29 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:29 DEBUG opendrift.models.basemodel.environment:618: Data needed for 9041 elements
14:20:29 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 9041 elements
14:20:29 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:29 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:29 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:29 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:29 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:29 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:29 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:29 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:29 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:29 DEBUG opendrift.models.basemodel.environment:618: Data needed for 9041 elements
14:20:29 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 9041 elements
14:20:29 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:29 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:29 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:29 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:29 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:29 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:29 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:29 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:29 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:29 DEBUG opendrift.models.basemodel.environment:618: Data needed for 9041 elements
14:20:29 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 9041 elements
14:20:29 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:29 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:29 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:29 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:29 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:29 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:29 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:29 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:29 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:29 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.412707 (min) 0.412707 (max)
14:20:29 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.935906 (min) 0.935906 (max)
14:20:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:29 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:29 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:29 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:29 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:29 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:29 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:29 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:29 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:29 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:29 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:29 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:29 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 1 (max)
14:20:29 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:29 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:29 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:29 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:29 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:29 DEBUG opendrift:646: 1273 elements hit land, moving them to the coastline.
14:20:29 DEBUG opendrift:1679: 1273 elements scheduled for deactivation (stranded)
14:20:29 DEBUG opendrift:1681: (z: 0.000000 to 0.000000)
14:20:30 DEBUG opendrift:1699: Removed 1273 elements.
14:20:30 DEBUG opendrift:1702: Removed 1273 values from environment.
14:20:30 DEBUG opendrift:1707: remove items from profile for z
14:20:30 DEBUG opendrift:1707: remove items from profile for ocean_vertical_diffusivity
14:20:30 DEBUG opendrift:1711: Removed 1273 values from environment_profiles.
14:20:30 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:30 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:30 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:30 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:30 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.001250974418126693 and 0.5912709351509505 m/s
14:20:30 DEBUG opendrift:2144: 7768 active elements (12232 deactivated)
14:20:30 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:30 DEBUG opendrift:2055: ======================================================================
14:20:30 INFO opendrift:2056: 2025-03-14 11:20:04.288590 - step 85 of 96 - 7768 active elements (12232 deactivated)
14:20:30 DEBUG opendrift:2062: 0 elements scheduled.
14:20:30 DEBUG opendrift:2064: ======================================================================
14:20:30 DEBUG opendrift:2075: 60.21304711084913 <- latitude -> 60.30780380699136
14:20:30 DEBUG opendrift:2080: 4.865611941445685 <- longitude -> 4.994782572928616
14:20:30 DEBUG opendrift:2083: z = 0.0
14:20:30 DEBUG opendrift:2086: ---------------------------------
14:20:30 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:30 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:30 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:30 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:30 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:30 DEBUG opendrift.models.basemodel.environment:618: Data needed for 7768 elements
14:20:30 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 7768 elements
14:20:30 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:30 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:30 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:30 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:30 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:30 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:30 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:30 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:30 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:30 DEBUG opendrift.models.basemodel.environment:618: Data needed for 7768 elements
14:20:30 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 7768 elements
14:20:30 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:30 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:30 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:30 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:30 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:30 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:30 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:30 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:30 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:30 DEBUG opendrift.models.basemodel.environment:618: Data needed for 7768 elements
14:20:30 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 7768 elements
14:20:30 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:30 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:30 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:30 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:30 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:30 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:30 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:30 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:30 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:30 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.382683 (min) 0.382683 (max)
14:20:30 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.92388 (min) 0.92388 (max)
14:20:30 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:30 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:30 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:30 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:30 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:30 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:30 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:30 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:30 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:30 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:30 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:30 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:30 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:30 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:30 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:30 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:30 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:30 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:30 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:30 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:30 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:30 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:30 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 1 (max)
14:20:30 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:30 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:30 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:30 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:30 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:30 DEBUG opendrift:646: 1801 elements hit land, moving them to the coastline.
14:20:30 DEBUG opendrift:1679: 1801 elements scheduled for deactivation (stranded)
14:20:30 DEBUG opendrift:1681: (z: 0.000000 to 0.000000)
14:20:31 DEBUG opendrift:1699: Removed 1801 elements.
14:20:31 DEBUG opendrift:1702: Removed 1801 values from environment.
14:20:31 DEBUG opendrift:1707: remove items from profile for z
14:20:31 DEBUG opendrift:1707: remove items from profile for ocean_vertical_diffusivity
14:20:31 DEBUG opendrift:1711: Removed 1801 values from environment_profiles.
14:20:31 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:31 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:31 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:31 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:31 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0016718127211672027 and 0.6530367841284331 m/s
14:20:31 DEBUG opendrift:2144: 5967 active elements (14033 deactivated)
14:20:31 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:31 DEBUG opendrift:2055: ======================================================================
14:20:31 INFO opendrift:2056: 2025-03-14 11:35:04.288590 - step 86 of 96 - 5967 active elements (14033 deactivated)
14:20:31 DEBUG opendrift:2062: 0 elements scheduled.
14:20:31 DEBUG opendrift:2064: ======================================================================
14:20:31 DEBUG opendrift:2075: 60.22042814309353 <- latitude -> 60.31648898687064
14:20:31 DEBUG opendrift:2080: 4.872623407924608 <- longitude -> 4.997762372971705
14:20:31 DEBUG opendrift:2083: z = 0.0
14:20:31 DEBUG opendrift:2086: ---------------------------------
14:20:31 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:31 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:31 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:31 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:31 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:31 DEBUG opendrift.models.basemodel.environment:618: Data needed for 5967 elements
14:20:31 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 5967 elements
14:20:31 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:31 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:31 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:31 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:31 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:31 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:31 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:31 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:31 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:31 DEBUG opendrift.models.basemodel.environment:618: Data needed for 5967 elements
14:20:31 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 5967 elements
14:20:31 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:31 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:31 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:31 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:31 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:31 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:31 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:31 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:31 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:31 DEBUG opendrift.models.basemodel.environment:618: Data needed for 5967 elements
14:20:31 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 5967 elements
14:20:31 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:31 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:31 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:31 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:31 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:31 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:31 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:31 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:31 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:31 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.35225 (min) 0.35225 (max)
14:20:31 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.910864 (min) 0.910864 (max)
14:20:31 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:31 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:31 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:31 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:31 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:31 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:31 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:31 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:31 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:31 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:31 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:31 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:31 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:31 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:31 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:31 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:31 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:31 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:31 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:31 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:31 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:31 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:31 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 1 (max)
14:20:31 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:31 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:31 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:31 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:31 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:31 DEBUG opendrift:646: 1697 elements hit land, moving them to the coastline.
14:20:31 DEBUG opendrift:1679: 1697 elements scheduled for deactivation (stranded)
14:20:31 DEBUG opendrift:1681: (z: 0.000000 to 0.000000)
14:20:32 DEBUG opendrift:1699: Removed 1697 elements.
14:20:32 DEBUG opendrift:1702: Removed 1697 values from environment.
14:20:32 DEBUG opendrift:1707: remove items from profile for z
14:20:32 DEBUG opendrift:1707: remove items from profile for ocean_vertical_diffusivity
14:20:32 DEBUG opendrift:1711: Removed 1697 values from environment_profiles.
14:20:32 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:32 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:32 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:32 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:32 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.003827724985333203 and 0.5849336035140908 m/s
14:20:32 DEBUG opendrift:2144: 4270 active elements (15730 deactivated)
14:20:32 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:32 DEBUG opendrift:2055: ======================================================================
14:20:32 INFO opendrift:2056: 2025-03-14 11:50:04.288590 - step 87 of 96 - 4270 active elements (15730 deactivated)
14:20:32 DEBUG opendrift:2062: 0 elements scheduled.
14:20:32 DEBUG opendrift:2064: ======================================================================
14:20:32 DEBUG opendrift:2075: 60.227767652325085 <- latitude -> 60.32279209880878
14:20:32 DEBUG opendrift:2080: 4.875909444183171 <- longitude -> 5.0020595347339505
14:20:32 DEBUG opendrift:2083: z = 0.0
14:20:32 DEBUG opendrift:2086: ---------------------------------
14:20:32 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:32 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:32 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:32 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:32 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:32 DEBUG opendrift.models.basemodel.environment:618: Data needed for 4270 elements
14:20:32 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 4270 elements
14:20:32 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:32 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:32 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:32 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:32 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:32 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:32 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:32 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:32 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:32 DEBUG opendrift.models.basemodel.environment:618: Data needed for 4270 elements
14:20:32 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 4270 elements
14:20:32 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:32 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:32 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:32 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:32 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:32 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:32 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:32 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:32 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:32 DEBUG opendrift.models.basemodel.environment:618: Data needed for 4270 elements
14:20:32 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 4270 elements
14:20:32 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:32 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:32 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:32 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:32 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:32 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:32 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:32 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:32 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:32 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.321439 (min) 0.321439 (max)
14:20:32 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.896873 (min) 0.896873 (max)
14:20:32 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:32 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:32 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:32 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:32 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:32 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:32 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:32 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:32 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:32 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:32 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:32 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:32 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:32 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:32 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:32 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:32 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:32 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:32 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:32 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:32 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:32 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:32 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 1 (max)
14:20:32 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:32 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:32 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:32 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:32 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:32 DEBUG opendrift:646: 1320 elements hit land, moving them to the coastline.
14:20:32 DEBUG opendrift:1679: 1320 elements scheduled for deactivation (stranded)
14:20:32 DEBUG opendrift:1681: (z: 0.000000 to 0.000000)
14:20:33 DEBUG opendrift:1699: Removed 1320 elements.
14:20:33 DEBUG opendrift:1702: Removed 1320 values from environment.
14:20:33 DEBUG opendrift:1707: remove items from profile for z
14:20:33 DEBUG opendrift:1707: remove items from profile for ocean_vertical_diffusivity
14:20:33 DEBUG opendrift:1711: Removed 1320 values from environment_profiles.
14:20:33 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:33 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:33 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:33 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:33 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0020590302394972258 and 0.6015461753780741 m/s
14:20:33 DEBUG opendrift:2144: 2950 active elements (17050 deactivated)
14:20:33 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:33 DEBUG opendrift:2055: ======================================================================
14:20:33 INFO opendrift:2056: 2025-03-14 12:05:04.288590 - step 88 of 96 - 2950 active elements (17050 deactivated)
14:20:33 DEBUG opendrift:2062: 0 elements scheduled.
14:20:33 DEBUG opendrift:2064: ======================================================================
14:20:33 DEBUG opendrift:2075: 60.23452241778493 <- latitude -> 60.32967951394781
14:20:33 DEBUG opendrift:2080: 4.883100547348317 <- longitude -> 4.9970975915306415
14:20:33 DEBUG opendrift:2083: z = 0.0
14:20:33 DEBUG opendrift:2086: ---------------------------------
14:20:33 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:33 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:33 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:33 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:33 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:33 DEBUG opendrift.models.basemodel.environment:618: Data needed for 2950 elements
14:20:33 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 2950 elements
14:20:33 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:33 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:33 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:33 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:33 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:33 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:33 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:33 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:33 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:33 DEBUG opendrift.models.basemodel.environment:618: Data needed for 2950 elements
14:20:33 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 2950 elements
14:20:33 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:33 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:33 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:33 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:33 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:33 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:33 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:33 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:33 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:33 DEBUG opendrift.models.basemodel.environment:618: Data needed for 2950 elements
14:20:33 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 2950 elements
14:20:33 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:33 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:33 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:33 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:33 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:33 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:33 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:33 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:33 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:33 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.290285 (min) 0.290285 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.881921 (min) 0.881921 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 1 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:33 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:33 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:33 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:33 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:33 DEBUG opendrift:646: 888 elements hit land, moving them to the coastline.
14:20:33 DEBUG opendrift:1679: 888 elements scheduled for deactivation (stranded)
14:20:33 DEBUG opendrift:1681: (z: 0.000000 to 0.000000)
14:20:33 DEBUG opendrift:1699: Removed 888 elements.
14:20:33 DEBUG opendrift:1702: Removed 888 values from environment.
14:20:33 DEBUG opendrift:1707: remove items from profile for z
14:20:33 DEBUG opendrift:1707: remove items from profile for ocean_vertical_diffusivity
14:20:33 DEBUG opendrift:1711: Removed 888 values from environment_profiles.
14:20:33 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:33 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:33 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:33 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:33 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.006086767919096393 and 0.5464493884756085 m/s
14:20:33 DEBUG opendrift:2144: 2062 active elements (17938 deactivated)
14:20:33 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:33 DEBUG opendrift:2055: ======================================================================
14:20:33 INFO opendrift:2056: 2025-03-14 12:20:04.288590 - step 89 of 96 - 2062 active elements (17938 deactivated)
14:20:33 DEBUG opendrift:2062: 0 elements scheduled.
14:20:33 DEBUG opendrift:2064: ======================================================================
14:20:33 DEBUG opendrift:2075: 60.24073851133427 <- latitude -> 60.33692210547657
14:20:33 DEBUG opendrift:2080: 4.887757890029344 <- longitude -> 4.996561696532091
14:20:33 DEBUG opendrift:2083: z = 0.0
14:20:33 DEBUG opendrift:2086: ---------------------------------
14:20:33 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:33 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:33 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:33 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:33 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:33 DEBUG opendrift.models.basemodel.environment:618: Data needed for 2062 elements
14:20:33 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 2062 elements
14:20:33 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:33 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:33 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:33 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:33 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:33 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:33 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:33 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:33 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:33 DEBUG opendrift.models.basemodel.environment:618: Data needed for 2062 elements
14:20:33 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 2062 elements
14:20:33 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:33 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:33 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:33 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:33 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:33 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:33 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:33 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:33 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:33 DEBUG opendrift.models.basemodel.environment:618: Data needed for 2062 elements
14:20:33 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 2062 elements
14:20:33 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:33 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:33 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:33 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:33 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:33 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:33 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:33 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:33 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:33 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.258819 (min) 0.258819 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.866025 (min) 0.866025 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 1 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:33 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:33 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:33 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:33 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:33 DEBUG opendrift:646: 626 elements hit land, moving them to the coastline.
14:20:33 DEBUG opendrift:1679: 626 elements scheduled for deactivation (stranded)
14:20:33 DEBUG opendrift:1681: (z: 0.000000 to 0.000000)
14:20:33 DEBUG opendrift:1699: Removed 626 elements.
14:20:33 DEBUG opendrift:1702: Removed 626 values from environment.
14:20:33 DEBUG opendrift:1707: remove items from profile for z
14:20:33 DEBUG opendrift:1707: remove items from profile for ocean_vertical_diffusivity
14:20:33 DEBUG opendrift:1711: Removed 626 values from environment_profiles.
14:20:33 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:33 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:33 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:33 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:33 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.00735776119099111 and 0.555084375359102 m/s
14:20:33 DEBUG opendrift:2144: 1436 active elements (18564 deactivated)
14:20:33 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:33 DEBUG opendrift:2055: ======================================================================
14:20:33 INFO opendrift:2056: 2025-03-14 12:35:04.288590 - step 90 of 96 - 1436 active elements (18564 deactivated)
14:20:33 DEBUG opendrift:2062: 0 elements scheduled.
14:20:33 DEBUG opendrift:2064: ======================================================================
14:20:33 DEBUG opendrift:2075: 60.24758385341781 <- latitude -> 60.33006664671507
14:20:33 DEBUG opendrift:2080: 4.889343635855468 <- longitude -> 4.9927258233978815
14:20:33 DEBUG opendrift:2083: z = 0.0
14:20:33 DEBUG opendrift:2086: ---------------------------------
14:20:33 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:33 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:33 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:33 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:33 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:33 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1436 elements
14:20:33 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 1436 elements
14:20:33 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:33 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:33 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:33 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:33 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:33 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:33 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:33 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:33 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:33 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1436 elements
14:20:33 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 1436 elements
14:20:33 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:33 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:33 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:33 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:33 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:33 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:33 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:33 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:33 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:33 DEBUG opendrift.models.basemodel.environment:618: Data needed for 1436 elements
14:20:33 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1436 elements
14:20:33 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:33 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:33 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:33 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:33 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:33 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:33 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:33 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:33 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:33 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.227076 (min) 0.227076 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.849202 (min) 0.849202 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 1 (max)
14:20:33 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:33 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:33 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:33 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:33 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:33 DEBUG opendrift:646: 474 elements hit land, moving them to the coastline.
14:20:33 DEBUG opendrift:1679: 474 elements scheduled for deactivation (stranded)
14:20:33 DEBUG opendrift:1681: (z: 0.000000 to 0.000000)
14:20:34 DEBUG opendrift:1699: Removed 474 elements.
14:20:34 DEBUG opendrift:1702: Removed 474 values from environment.
14:20:34 DEBUG opendrift:1707: remove items from profile for z
14:20:34 DEBUG opendrift:1707: remove items from profile for ocean_vertical_diffusivity
14:20:34 DEBUG opendrift:1711: Removed 474 values from environment_profiles.
14:20:34 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:34 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:34 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:34 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:34 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.005026491836975483 and 0.5968454080119526 m/s
14:20:34 DEBUG opendrift:2144: 962 active elements (19038 deactivated)
14:20:34 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:34 DEBUG opendrift:2055: ======================================================================
14:20:34 INFO opendrift:2056: 2025-03-14 12:50:04.288590 - step 91 of 96 - 962 active elements (19038 deactivated)
14:20:34 DEBUG opendrift:2062: 0 elements scheduled.
14:20:34 DEBUG opendrift:2064: ======================================================================
14:20:34 DEBUG opendrift:2075: 60.25246791173785 <- latitude -> 60.33735367206833
14:20:34 DEBUG opendrift:2080: 4.891895878372216 <- longitude -> 4.98397001737523
14:20:34 DEBUG opendrift:2083: z = 0.0
14:20:34 DEBUG opendrift:2086: ---------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:34 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:34 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:618: Data needed for 962 elements
14:20:34 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 962 elements
14:20:34 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:34 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:34 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:34 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:34 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:34 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:34 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:618: Data needed for 962 elements
14:20:34 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 962 elements
14:20:34 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:34 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:34 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:34 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:34 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:34 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:34 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:618: Data needed for 962 elements
14:20:34 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 962 elements
14:20:34 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:34 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:34 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:34 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:34 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:34 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:34 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:34 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:34 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.19509 (min) 0.19509 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.83147 (min) 0.83147 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 1 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:34 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:34 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:34 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:34 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:34 DEBUG opendrift:646: 333 elements hit land, moving them to the coastline.
14:20:34 DEBUG opendrift:1679: 333 elements scheduled for deactivation (stranded)
14:20:34 DEBUG opendrift:1681: (z: 0.000000 to 0.000000)
14:20:34 DEBUG opendrift:1699: Removed 333 elements.
14:20:34 DEBUG opendrift:1702: Removed 333 values from environment.
14:20:34 DEBUG opendrift:1707: remove items from profile for z
14:20:34 DEBUG opendrift:1707: remove items from profile for ocean_vertical_diffusivity
14:20:34 DEBUG opendrift:1711: Removed 333 values from environment_profiles.
14:20:34 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:34 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:34 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:34 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:34 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.003164621732593731 and 0.5191505235689248 m/s
14:20:34 DEBUG opendrift:2144: 629 active elements (19371 deactivated)
14:20:34 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:34 DEBUG opendrift:2055: ======================================================================
14:20:34 INFO opendrift:2056: 2025-03-14 13:05:04.288590 - step 92 of 96 - 629 active elements (19371 deactivated)
14:20:34 DEBUG opendrift:2062: 0 elements scheduled.
14:20:34 DEBUG opendrift:2064: ======================================================================
14:20:34 DEBUG opendrift:2075: 60.269487006353415 <- latitude -> 60.342355405677665
14:20:34 DEBUG opendrift:2080: 4.894769593183158 <- longitude -> 4.988017607350398
14:20:34 DEBUG opendrift:2083: z = 0.0
14:20:34 DEBUG opendrift:2086: ---------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:34 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:34 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:618: Data needed for 629 elements
14:20:34 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 629 elements
14:20:34 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:34 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:34 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:34 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:34 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:34 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:34 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:618: Data needed for 629 elements
14:20:34 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 629 elements
14:20:34 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:34 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:34 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:34 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:34 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:34 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:34 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:618: Data needed for 629 elements
14:20:34 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 629 elements
14:20:34 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:34 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:34 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:34 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:34 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:34 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:34 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:34 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:34 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.162895 (min) 0.162895 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.812847 (min) 0.812847 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 1 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:34 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:34 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:34 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:34 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:34 DEBUG opendrift:646: 246 elements hit land, moving them to the coastline.
14:20:34 DEBUG opendrift:1679: 246 elements scheduled for deactivation (stranded)
14:20:34 DEBUG opendrift:1681: (z: 0.000000 to 0.000000)
14:20:34 DEBUG opendrift:1699: Removed 246 elements.
14:20:34 DEBUG opendrift:1702: Removed 246 values from environment.
14:20:34 DEBUG opendrift:1707: remove items from profile for z
14:20:34 DEBUG opendrift:1707: remove items from profile for ocean_vertical_diffusivity
14:20:34 DEBUG opendrift:1711: Removed 246 values from environment_profiles.
14:20:34 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:34 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:34 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:34 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:34 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.011138388642781258 and 0.6007170551308516 m/s
14:20:34 DEBUG opendrift:2144: 383 active elements (19617 deactivated)
14:20:34 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:34 DEBUG opendrift:2055: ======================================================================
14:20:34 INFO opendrift:2056: 2025-03-14 13:20:04.288590 - step 93 of 96 - 383 active elements (19617 deactivated)
14:20:34 DEBUG opendrift:2062: 0 elements scheduled.
14:20:34 DEBUG opendrift:2064: ======================================================================
14:20:34 DEBUG opendrift:2075: 60.275173752863395 <- latitude -> 60.34952108320691
14:20:34 DEBUG opendrift:2080: 4.894900622042756 <- longitude -> 4.993111908318119
14:20:34 DEBUG opendrift:2083: z = 0.0
14:20:34 DEBUG opendrift:2086: ---------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:34 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:34 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:618: Data needed for 383 elements
14:20:34 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 383 elements
14:20:34 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:34 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:34 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:34 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:34 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:34 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:34 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:618: Data needed for 383 elements
14:20:34 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 383 elements
14:20:34 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:34 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:34 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:34 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:34 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:34 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:34 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:618: Data needed for 383 elements
14:20:34 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 383 elements
14:20:34 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:34 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:34 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:34 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:34 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:34 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:34 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:34 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:34 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.130526 (min) 0.130526 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.793353 (min) 0.793353 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 1 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:34 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:34 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:34 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:34 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:34 DEBUG opendrift:646: 158 elements hit land, moving them to the coastline.
14:20:34 DEBUG opendrift:1679: 158 elements scheduled for deactivation (stranded)
14:20:34 DEBUG opendrift:1681: (z: 0.000000 to 0.000000)
14:20:34 DEBUG opendrift:1699: Removed 158 elements.
14:20:34 DEBUG opendrift:1702: Removed 158 values from environment.
14:20:34 DEBUG opendrift:1707: remove items from profile for z
14:20:34 DEBUG opendrift:1707: remove items from profile for ocean_vertical_diffusivity
14:20:34 DEBUG opendrift:1711: Removed 158 values from environment_profiles.
14:20:34 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:34 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:34 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:34 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:34 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.008625528964109612 and 0.7093539729858529 m/s
14:20:34 DEBUG opendrift:2144: 225 active elements (19775 deactivated)
14:20:34 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:34 DEBUG opendrift:2055: ======================================================================
14:20:34 INFO opendrift:2056: 2025-03-14 13:35:04.288590 - step 94 of 96 - 225 active elements (19775 deactivated)
14:20:34 DEBUG opendrift:2062: 0 elements scheduled.
14:20:34 DEBUG opendrift:2064: ======================================================================
14:20:34 DEBUG opendrift:2075: 60.28271742087726 <- latitude -> 60.35108122524625
14:20:34 DEBUG opendrift:2080: 4.89475609760547 <- longitude -> 4.9763797848302405
14:20:34 DEBUG opendrift:2083: z = 0.0
14:20:34 DEBUG opendrift:2086: ---------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:34 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:34 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:618: Data needed for 225 elements
14:20:34 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 225 elements
14:20:34 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:34 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:34 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:34 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:34 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:34 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:34 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:618: Data needed for 225 elements
14:20:34 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 225 elements
14:20:34 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:34 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:34 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:34 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:34 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:34 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:34 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:618: Data needed for 225 elements
14:20:34 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 225 elements
14:20:34 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:34 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:34 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:34 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:34 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:34 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:34 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:34 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:34 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.0980171 (min) 0.0980171 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.77301 (min) 0.77301 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 1 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:34 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:34 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:34 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:34 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:34 DEBUG opendrift:646: 70 elements hit land, moving them to the coastline.
14:20:34 DEBUG opendrift:1679: 70 elements scheduled for deactivation (stranded)
14:20:34 DEBUG opendrift:1681: (z: 0.000000 to 0.000000)
14:20:34 DEBUG opendrift:1699: Removed 70 elements.
14:20:34 DEBUG opendrift:1702: Removed 70 values from environment.
14:20:34 DEBUG opendrift:1707: remove items from profile for z
14:20:34 DEBUG opendrift:1707: remove items from profile for ocean_vertical_diffusivity
14:20:34 DEBUG opendrift:1711: Removed 70 values from environment_profiles.
14:20:34 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:34 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:34 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:34 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:34 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.01960645690467423 and 0.4708328812908272 m/s
14:20:34 DEBUG opendrift:2144: 155 active elements (19845 deactivated)
14:20:34 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:34 DEBUG opendrift:2055: ======================================================================
14:20:34 INFO opendrift:2056: 2025-03-14 13:50:04.288590 - step 95 of 96 - 155 active elements (19845 deactivated)
14:20:34 DEBUG opendrift:2062: 0 elements scheduled.
14:20:34 DEBUG opendrift:2064: ======================================================================
14:20:34 DEBUG opendrift:2075: 60.289663826940384 <- latitude -> 60.35103190804412
14:20:34 DEBUG opendrift:2080: 4.897515906023684 <- longitude -> 4.979461404251397
14:20:34 DEBUG opendrift:2083: z = 0.0
14:20:34 DEBUG opendrift:2086: ---------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:34 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:34 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:618: Data needed for 155 elements
14:20:34 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 155 elements
14:20:34 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:34 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:34 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:34 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:34 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:34 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:34 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:618: Data needed for 155 elements
14:20:34 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 155 elements
14:20:34 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:34 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:34 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:34 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:34 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:34 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:34 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:618: Data needed for 155 elements
14:20:34 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 155 elements
14:20:34 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:34 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:34 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:34 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:34 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:34 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:34 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:34 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:34 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.0654031 (min) 0.0654031 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.75184 (min) 0.75184 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 1 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:34 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:34 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:34 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:34 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:34 DEBUG opendrift:646: 56 elements hit land, moving them to the coastline.
14:20:34 DEBUG opendrift:1679: 56 elements scheduled for deactivation (stranded)
14:20:34 DEBUG opendrift:1681: (z: 0.000000 to 0.000000)
14:20:34 DEBUG opendrift:1699: Removed 56 elements.
14:20:34 DEBUG opendrift:1702: Removed 56 values from environment.
14:20:34 DEBUG opendrift:1707: remove items from profile for z
14:20:34 DEBUG opendrift:1707: remove items from profile for ocean_vertical_diffusivity
14:20:34 DEBUG opendrift:1711: Removed 56 values from environment_profiles.
14:20:34 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:34 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:34 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:34 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:34 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.007399925388815132 and 0.46640679562131393 m/s
14:20:34 DEBUG opendrift:2144: 99 active elements (19901 deactivated)
14:20:34 DEBUG opendrift:874: to be seeded: 0, already seeded 20000
14:20:34 DEBUG opendrift:2055: ======================================================================
14:20:34 INFO opendrift:2056: 2025-03-14 14:05:04.288590 - step 96 of 96 - 99 active elements (19901 deactivated)
14:20:34 DEBUG opendrift:2062: 0 elements scheduled.
14:20:34 DEBUG opendrift:2064: ======================================================================
14:20:34 DEBUG opendrift:2075: 60.29599724719966 <- latitude -> 60.35703455906534
14:20:34 DEBUG opendrift:2080: 4.906495640167684 <- longitude -> 4.97602111024011
14:20:34 DEBUG opendrift:2083: z = 0.0
14:20:34 DEBUG opendrift:2086: ---------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:596: Variable group ['x_sea_water_velocity']
14:20:34 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader
14:20:34 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:618: Data needed for 99 elements
14:20:34 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader covering 99 elements
14:20:34 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:34 DEBUG opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
14:20:34 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:34 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:34 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:596: Variable group ['y_sea_water_velocity']
14:20:34 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:601: Calling reader oscillating_reader_0
14:20:34 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:618: Data needed for 99 elements
14:20:34 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from oscillating_reader_0 covering 99 elements
14:20:34 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:34 DEBUG opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
14:20:34 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:34 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:34 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:34 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:34 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:618: Data needed for 99 elements
14:20:34 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 99 elements
14:20:34 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:34 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:34 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:34 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:34 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:34 DEBUG opendrift.models.basemodel.environment:786: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:20:34 DEBUG opendrift.models.basemodel.environment:791: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:20:34 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:34 DEBUG opendrift.models.basemodel.environment:893: x_sea_water_velocity: 0.0327191 (min) 0.0327191 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: y_sea_water_velocity: 0.729864 (min) 0.729864 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_height: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: x_wind: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: y_wind: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: upward_sea_water_velocity: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: ocean_vertical_diffusivity: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_significant_height: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: surface_downward_x_stress: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: surface_downward_y_stress: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: turbulent_kinetic_energy: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: turbulent_generic_length_scale: 0 (min) 0 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 1 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:34 DEBUG opendrift.models.physics_methods:837: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000
14:20:34 DEBUG opendrift.models.physics_methods:895: Calculating wave period Tm02 from wind
14:20:34 DEBUG opendrift.models.physics_methods:905: min: 1.256637, mean: 1.256637, max: 1.256637
14:20:34 DEBUG opendrift.models.physics_methods:845: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637
14:20:34 DEBUG opendrift:646: 39 elements hit land, moving them to the coastline.
14:20:34 DEBUG opendrift:1679: 39 elements scheduled for deactivation (stranded)
14:20:34 DEBUG opendrift:1681: (z: 0.000000 to 0.000000)
14:20:34 DEBUG opendrift:1699: Removed 39 elements.
14:20:34 DEBUG opendrift:1702: Removed 39 values from environment.
14:20:34 DEBUG opendrift:1707: remove items from profile for z
14:20:34 DEBUG opendrift:1707: remove items from profile for ocean_vertical_diffusivity
14:20:34 DEBUG opendrift:1711: Removed 39 values from environment_profiles.
14:20:34 DEBUG opendrift:2129: Calling OceanDrift.update()
14:20:34 DEBUG opendrift.models.physics_methods:749: No wind for wind-sheared ocean drift
14:20:34 DEBUG opendrift.models.physics_methods:777: No Stokes drift velocity available
14:20:34 DEBUG opendrift.models.oceandrift:308: No vertical advection for elements at surface
14:20:34 DEBUG opendrift:1657: Moving elements according to horizontal diffusivity of 10.0, with speeds between 0.0036460707565725728 and 0.351805971324279 m/s
14:20:34 DEBUG opendrift:2144: 60 active elements (19940 deactivated)
14:20:34 DEBUG opendrift:2173: Cleaning up
14:20:34 DEBUG opendrift.models.basemodel.environment:595: ----------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:596: Variable group ['land_binary_mask']
14:20:34 DEBUG opendrift.models.basemodel.environment:597: ----------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:601: Calling reader global_landmask
14:20:34 DEBUG opendrift.models.basemodel.environment:602: ----------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:618: Data needed for 60 elements
14:20:34 DEBUG opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 60 elements
14:20:34 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
14:20:34 DEBUG opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
14:20:34 DEBUG opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
14:20:34 DEBUG opendrift.models.basemodel.environment:752: Obtained data for all elements.
14:20:34 DEBUG opendrift.models.basemodel.environment:765: ---------------------------------------
14:20:34 DEBUG opendrift.models.basemodel.environment:766: Finished processing all variable groups
14:20:34 DEBUG opendrift.models.basemodel.environment:891: ------------ SUMMARY -------------
14:20:34 DEBUG opendrift.models.basemodel.environment:893: land_binary_mask: 0 (min) 1 (max)
14:20:34 DEBUG opendrift.models.basemodel.environment:895: ---------------------------------
14:20:34 DEBUG opendrift:646: 21 elements hit land, moving them to the coastline.
14:20:34 DEBUG opendrift:1679: 21 elements scheduled for deactivation (stranded)
14:20:34 DEBUG opendrift:1681: (z: 0.000000 to 0.000000)
14:20:34 DEBUG opendrift:2256: Updating minval and maxval
14:20:34 DEBUG opendrift:2336: Writing to file
14:20:34 DEBUG opendrift.export.io_netcdf:33: Initialising output netCDF file simulation.nc with 49 timesteps
14:20:35 DEBUG opendrift:2181: Finalising and closing output file: simulation.nc
14:20:35 DEBUG opendrift.export.io_netcdf:66: Closing netCDF-file
14:20:35 DEBUG opendrift.export.io_netcdf:75: Closed netCDF-file
14:20:36 DEBUG opendrift.export.io_netcdf:88: Making netCDF file CDM compliant with fixed dimensions, and compressing with {'zlib': True, 'complevel': 6}
14:20:38 DEBUG opendrift:1699: Removed 21 elements.
14:20:38 DEBUG opendrift:1702: Removed 21 values from environment.
14:20:38 DEBUG opendrift:1707: remove items from profile for z
14:20:38 DEBUG opendrift:1707: remove items from profile for ocean_vertical_diffusivity
14:20:38 DEBUG opendrift:1711: Removed 21 values from environment_profiles.
14:20:38 DEBUG opendrift:100: Changed mode from Mode.Run to Mode.Result
Opening the output file lazily with Xarray. This will work even if the file is too large to fit in memory, as it will read and process data chuck-by-chunk directly from file using Dask. (See also example_river_runoff.py) See also TrajAn: https://opendrift.github.io/trajan/
oa = opendrift.open(outfile)
14:20:38 DEBUG opendrift.models.oceandrift:116: No machine learning correction available.
14:20:38 DEBUG opendrift.config:168: Adding 50 config items from environment
14:20:38 DEBUG opendrift.config:168: Adding 5 config items from environment
14:20:38 DEBUG opendrift.config:168: Adding 18 config items from __init__
14:20:38 DEBUG opendrift.config:178: Overwriting config item readers:max_number_of_fails
14:20:38 DEBUG opendrift.config:168: Adding 5 config items from __init__
14:20:38 INFO opendrift:509: OpenDriftSimulation initialised (version 1.13.0 / v1.13.0-75-gd4c13d2)
14:20:38 DEBUG opendrift.config:168: Adding 15 config items from oceandrift
14:20:38 DEBUG opendrift.config:178: Overwriting config item seed:z
14:20:38 DEBUG opendrift.export.io_netcdf:101: Importing from simulation.nc
14:20:38 DEBUG opendrift:1699: Removed 19961 elements.
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: environment:constant:x_sea_water_velocity -> None
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: environment:fallback:x_sea_water_velocity -> 0
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: environment:constant:y_sea_water_velocity -> None
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: environment:fallback:y_sea_water_velocity -> 0
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: environment:constant:sea_surface_height -> None
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: environment:fallback:sea_surface_height -> 0
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: environment:constant:x_wind -> None
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: environment:fallback:x_wind -> 0
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: environment:constant:y_wind -> None
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: environment:fallback:y_wind -> 0
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: environment:constant:upward_sea_water_velocity -> None
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: environment:fallback:upward_sea_water_velocity -> 0
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: environment:constant:ocean_vertical_diffusivity -> None
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: environment:fallback:ocean_vertical_diffusivity -> 0
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: environment:constant:sea_surface_wave_significant_height -> None
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: environment:fallback:sea_surface_wave_significant_height -> 0
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: environment:constant:sea_surface_wave_stokes_drift_x_velocity -> None
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: environment:fallback:sea_surface_wave_stokes_drift_x_velocity -> 0
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: environment:constant:sea_surface_wave_stokes_drift_y_velocity -> None
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: environment:fallback:sea_surface_wave_stokes_drift_y_velocity -> 0
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: environment:constant:sea_surface_wave_period_at_variance_spectral_density_maximum -> None
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: environment:fallback:sea_surface_wave_period_at_variance_spectral_density_maximum -> 0
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: environment:constant:sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment -> None
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: environment:fallback:sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment -> 0
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: environment:constant:sea_surface_swell_wave_to_direction -> None
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: environment:fallback:sea_surface_swell_wave_to_direction -> 0
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: environment:constant:sea_surface_swell_wave_peak_period_from_variance_spectral_density -> None
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: environment:fallback:sea_surface_swell_wave_peak_period_from_variance_spectral_density -> 0
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: environment:constant:sea_surface_swell_wave_significant_height -> None
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: environment:fallback:sea_surface_swell_wave_significant_height -> 0
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: environment:constant:sea_surface_wind_wave_to_direction -> None
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: environment:fallback:sea_surface_wind_wave_to_direction -> 0
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: environment:constant:sea_surface_wind_wave_mean_period -> None
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: environment:fallback:sea_surface_wind_wave_mean_period -> 0
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: environment:constant:sea_surface_wind_wave_significant_height -> None
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: environment:fallback:sea_surface_wind_wave_significant_height -> 0
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: environment:constant:surface_downward_x_stress -> None
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: environment:fallback:surface_downward_x_stress -> 0
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: environment:constant:surface_downward_y_stress -> None
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: environment:fallback:surface_downward_y_stress -> 0
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: environment:constant:turbulent_kinetic_energy -> None
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: environment:fallback:turbulent_kinetic_energy -> 0
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: environment:constant:turbulent_generic_length_scale -> None
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: environment:fallback:turbulent_generic_length_scale -> 0
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: environment:constant:ocean_mixed_layer_thickness -> None
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: environment:fallback:ocean_mixed_layer_thickness -> 50
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: environment:constant:sea_floor_depth_below_sea_level -> None
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: environment:fallback:sea_floor_depth_below_sea_level -> 10000
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: environment:constant:land_binary_mask -> None
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: environment:fallback:land_binary_mask -> None
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: general:use_auto_landmask -> True
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: drift:current_uncertainty -> 0
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: drift:current_uncertainty_uniform -> 0
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: drift:max_speed -> 2.0
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: readers:max_number_of_fails -> 1
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: general:simulation_name ->
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: general:coastline_action -> stranding
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: general:coastline_approximation_precision -> 0.001
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: general:time_step_minutes -> 60
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: general:time_step_output_minutes -> None
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: seed:ocean_only -> True
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: seed:number -> 1
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: drift:max_age_seconds -> None
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: drift:advection_scheme -> euler
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: drift:horizontal_diffusivity -> 10.0
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: drift:profiles_depth -> 50
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: drift:wind_uncertainty -> 0
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: drift:relative_wind -> False
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: drift:deactivate_north_of -> None
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: drift:deactivate_south_of -> None
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: drift:deactivate_east_of -> None
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: drift:deactivate_west_of -> None
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: seed:origin_marker -> 0
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: seed:z -> 0
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: seed:wind_drift_factor -> 0.02
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: seed:current_drift_factor -> 1
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: seed:terminal_velocity -> 0.0
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: drift:vertical_advection -> True
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: drift:vertical_mixing -> False
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: vertical_mixing:timestep -> 60
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: vertical_mixing:diffusivitymodel -> environment
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: vertical_mixing:background_diffusivity -> 1.2e-05
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: vertical_mixing:TSprofiles -> False
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: drift:wind_drift_depth -> 0.1
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: drift:stokes_drift -> True
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: drift:stokes_drift_profile -> Phillips
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: drift:use_tabularised_stokes_drift -> False
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: drift:tabularised_stokes_drift_fetch -> 25000
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: general:seafloor_action -> lift_to_seafloor
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: drift:truncate_ocean_model_below_m -> None
14:20:38 DEBUG opendrift.export.io_netcdf:138: Setting imported config: seed:seafloor -> False
14:20:38 INFO opendrift:78: Returning <class 'opendrift.models.oceandrift.OceanDrift'> object
Calculating histogram The histogram may be stored/cached to a netCDF file for later re-use, as the calculation may be time consuming for huge output files.
h = oa.get_histogram(pixelsize_m=500)
14:20:38 INFO opendrift:3887: calculating for origin_marker 0...
14:20:38 INFO opendrift:3887: calculating for origin_marker 1...
Plot the cumulative coverage of first seeding (origin_marker=0)
b=h.isel(origin_marker=0).sum(dim='time')
oa.plot(background=b.where(b>0), fast=True, show_elements=False, vmin=0, vmax=1000, clabel='First seeding')

14:20:38 DEBUG opendrift:2398: Setting up map: corners=None, fast=True, lscale=None
14:20:38 WARNING opendrift:2429: Plotting fast. This will make your plots less accurate.
(<GeoAxes: title={'center': 'OpenDrift - OceanDrift\n2025-03-13 14:20 to 2025-03-14 14:20 UTC (49 steps)'}>, <Figure size 858.237x1100 with 2 Axes>)
Making two animations, for each of the two seedings / origin_markers. The calculated density fields may be stored/cached to a netCDF file for later re-use, as their calculation may be time consuming for huge output files. Note that other analysis/plotting methods are not yet adapted to datasets opened lazily with open_xarray
for om in [0, 1]:
background=h.isel(origin_marker=om)
oa.animation(background=background.where(background>0), bgalpha=1,
corners=[4.0, 6, 59.5, 61], fast=False, show_elements=False, vmin=0, vmax=200)
# Cleaning up
os.remove(outfile)
14:21:44 DEBUG opendrift:2398: Setting up map: corners=[4.0, 6, 59.5, 61], fast=False, lscale=None
14:21:45 DEBUG opendrift.readers.reader_global_landmask:84: Loading shapes ('h' level 1) with Cartopy shapereader...
14:22:00 DEBUG opendrift.readers.reader_global_landmask:84: Loading shapes ('h' level 5) with Cartopy shapereader...
14:22:00 DEBUG opendrift.readers.reader_global_landmask:84: Loading shapes ('h' level 6) with Cartopy shapereader...
14:22:00 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
/opt/conda/envs/opendrift/lib/python3.11/site-packages/cartopy/mpl/geoaxes.py:1692: UserWarning: No data for colormapping provided via 'c'. Parameters 'vmin', 'vmax' will be ignored
result = super().scatter(*args, **kwargs)
14:22:00 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:01 DEBUG opendrift:3043: Saving animation..
14:22:01 INFO opendrift:4600: Saving animation to /root/project/docs/source/gallery/animations/example_huge_output_0.gif...
14:22:01 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:01 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:02 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:02 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:03 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:03 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:03 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:03 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:04 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:04 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:05 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:05 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:05 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:05 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:06 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:06 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:07 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:07 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:07 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:07 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:08 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:08 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:09 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:09 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:09 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:09 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:10 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:10 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:10 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:11 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:11 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:11 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:12 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:12 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:12 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:13 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:13 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:13 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:14 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:14 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:15 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:15 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:15 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:15 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:16 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:16 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:17 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:17 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:17 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:18 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:18 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:18 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:19 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:19 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:20 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:20 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:21 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:21 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:21 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:21 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:22 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:22 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:23 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:23 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:23 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:23 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:24 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:24 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:25 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:25 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:25 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:26 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:26 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:26 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:27 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:27 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:27 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:28 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:28 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:28 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:29 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:29 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:29 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:29 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:30 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:30 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:31 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:31 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:31 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:31 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:32 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:32 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:33 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:33 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:33 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:33 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:34 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:34 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:36 DEBUG opendrift:4638: MPLBACKEND = agg
14:22:36 DEBUG opendrift:4639: DISPLAY = None
14:22:36 DEBUG opendrift:4640: Time to save animation: 0:00:34.643124
14:22:36 INFO opendrift:3036: Time to make animation: 0:00:51.239941
14:22:36 DEBUG opendrift:2398: Setting up map: corners=[4.0, 6, 59.5, 61], fast=False, lscale=None
14:22:36 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
/opt/conda/envs/opendrift/lib/python3.11/site-packages/cartopy/mpl/geoaxes.py:1692: UserWarning: No data for colormapping provided via 'c'. Parameters 'vmin', 'vmax' will be ignored
result = super().scatter(*args, **kwargs)
14:22:36 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:37 DEBUG opendrift:3043: Saving animation..
14:22:37 INFO opendrift:4600: Saving animation to /root/project/docs/source/gallery/animations/example_huge_output_1.gif...
14:22:37 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:37 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:38 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:38 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:39 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:39 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:39 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:39 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:40 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:40 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:41 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:41 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:41 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:41 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:42 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:42 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:43 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:43 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:43 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:43 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:44 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:44 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:45 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:45 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:46 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:46 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:47 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:47 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:47 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:48 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:48 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:48 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:49 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:49 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:50 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:50 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:51 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:51 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:51 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:51 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:52 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:52 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:53 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:53 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:53 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:53 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:54 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:54 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:55 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:55 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:55 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:55 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:56 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:56 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:57 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:57 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:57 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:57 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:58 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:58 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:59 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:59 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:22:59 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:23:00 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:23:00 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:23:00 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:23:01 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:23:01 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:23:01 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:23:02 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:23:02 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:23:02 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:23:03 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:23:03 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:23:03 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:23:04 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:23:04 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:23:04 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:23:05 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:23:05 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:23:05 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:23:06 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:23:06 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:23:06 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:23:07 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:23:07 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:23:08 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:23:08 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:23:08 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:23:08 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:23:09 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:23:09 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:23:10 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:23:10 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:23:10 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:23:10 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:23:11 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:23:11 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.999999999999999, 6.0, 59.5, 60.99999999999999)..
14:23:13 DEBUG opendrift:4638: MPLBACKEND = agg
14:23:13 DEBUG opendrift:4639: DISPLAY = None
14:23:13 DEBUG opendrift:4640: Time to save animation: 0:00:35.674719
14:23:13 INFO opendrift:3036: Time to make animation: 0:00:37.049411
First seeding

Second seeding

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