Note
Go to the end to download the full example code.
Manual aggregate
from datetime import datetime, timedelta
import pandas as pd
import matplotlib.pyplot as plt
from opendrift.readers import reader_netCDF_CF_generic
from opendrift.readers import open_mfdataset_overlap
from opendrift.models.oceandrift import OceanDrift
#%
# Create manual aggregate from individual URLs, for NorKyst ocean model initialized at 00 hours every day
start_time = datetime.now().date()-timedelta(days=3)
end_time = datetime.now().date()-timedelta(days=1)
ds = open_mfdataset_overlap(
'https://thredds.met.no/thredds/dodsC/fou-hi/norkyst800m-1h/NorKyst-800m_ZDEPTHS_his.an.%Y%m%d%H.nc',
time_series=pd.date_range(start_time, end_time, freq='1D'))
#%
# Create reader from Xarray dataset
rm = reader_netCDF_CF_generic.Reader(ds, name='NorKyst manual aggregate')
print(rm)
om = OceanDrift()
om.add_reader(rm)
om.seed_elements(lon=4.5, lat=60.0, number=1000, radius=100, time=rm.start_time)
om.run(end_time=rm.end_time)
#%
# Second simulation using ready made aggregate from thredds
ot = OceanDrift()
ot.add_readers_from_list(['https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be'])
ot.seed_elements(lon=4.5, lat=60.0, number=1000, radius=100, time=rm.start_time)
ot.run(end_time=rm.end_time)
#%
# Simulation should be identical, but we see that manual aggregate is significantly slower than using thredds aggregate
om.animation(compare=ot,
legend=[f'NorKyst manual aggregate {om.timing["total time"]}',
f'NorKyst thredds aggregate {ot.timing["total time"]}'])
Opening individual URLs...
Concatenating...
===========================
Reader: NorKyst manual aggregate
Projection:
+proj=stere +lat_0=90 +lat_ts=60 +lon_0=70 +x_0=3192800 +y_0=1784000 +a=6378137 +b=6356752.3142 +units=m +no_defs +type=crs
Coverage: [degrees]
xmin: 0.000000 xmax: 2080800.000000 step: 800 numx: 2602
ymin: 0.000000 ymax: 720800.000000 step: 800 numy: 902
Corners (lon, lat):
( -1.58, 58.50) ( 23.71, 75.32)
( 9.19, 55.91) ( 38.06, 70.03)
Vertical levels [m]:
[ -0. -3. -10. -15. -25. -50. -75. -100. -150. -200.
-250. -300. -500. -1000. -2000. -3000.]
Available time range:
start: 2024-11-08 00:00:00 end: 2024-11-10 23:00:00 step: 0 days 01:00:00
72 times (0 missing)
Variables:
ocean_vertical_diffusivity
x_wind
y_wind
sea_floor_depth_below_sea_level
sea_water_salinity
sea_water_temperature
x_sea_water_velocity
eastward_sea_water_velocity
y_sea_water_velocity
northward_sea_water_velocity
upward_sea_water_velocity
sea_surface_height
latitude
longitude
wind_speed - derived from ['x_wind', 'y_wind']
sea_water_speed - derived from ['x_sea_water_velocity', 'y_sea_water_velocity']
===========================
12:50:54 DEBUG opendrift.config:168: Adding 18 config items from __init__
12:50:54 DEBUG opendrift.config:178: Overwriting config item readers:max_number_of_fails
12:50:54 DEBUG opendrift.config:168: Adding 5 config items from __init__
12:50:54 INFO opendrift.models.basemodel:515: OpenDriftSimulation initialised (version 1.11.13 / v1.11.13-99-gd2132d3)
12:50:54 DEBUG opendrift.config:168: Adding 15 config items from oceandrift
12:50:54 DEBUG opendrift.config:178: Overwriting config item seed:z
12:50:54 DEBUG opendrift.models.basemodel.environment:328: Added reader NorKyst manual aggregate
12:50:54 INFO opendrift.models.basemodel.environment:218: Adding a dynamical landmask with max. priority based on assumed maximum speed of 2.0 m/s. Adding a customised landmask may be faster...
12:50:54 DEBUG opendrift.readers.basereader:186: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated
12:50:58 DEBUG opendrift.models.basemodel.environment:328: Added reader global_landmask
12:50:58 INFO opendrift.models.basemodel.environment:245: Fallback values will be used for the following variables which have no readers:
12:50:58 INFO opendrift.models.basemodel.environment:248: sea_surface_wave_significant_height: 0.000000
12:50:58 INFO opendrift.models.basemodel.environment:248: sea_surface_wave_stokes_drift_x_velocity: 0.000000
12:50:58 INFO opendrift.models.basemodel.environment:248: sea_surface_wave_stokes_drift_y_velocity: 0.000000
12:50:58 INFO opendrift.models.basemodel.environment:248: sea_surface_wave_period_at_variance_spectral_density_maximum: 0.000000
12:50:58 INFO opendrift.models.basemodel.environment:248: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0.000000
12:50:58 INFO opendrift.models.basemodel.environment:248: sea_surface_swell_wave_to_direction: 0.000000
12:50:58 INFO opendrift.models.basemodel.environment:248: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0.000000
12:50:58 INFO opendrift.models.basemodel.environment:248: sea_surface_swell_wave_significant_height: 0.000000
12:50:58 INFO opendrift.models.basemodel.environment:248: sea_surface_wind_wave_to_direction: 0.000000
12:50:58 INFO opendrift.models.basemodel.environment:248: sea_surface_wind_wave_mean_period: 0.000000
12:50:58 INFO opendrift.models.basemodel.environment:248: sea_surface_wind_wave_significant_height: 0.000000
12:50:58 INFO opendrift.models.basemodel.environment:248: surface_downward_x_stress: 0.000000
12:50:58 INFO opendrift.models.basemodel.environment:248: surface_downward_y_stress: 0.000000
12:50:58 INFO opendrift.models.basemodel.environment:248: turbulent_kinetic_energy: 0.000000
12:50:58 INFO opendrift.models.basemodel.environment:248: turbulent_generic_length_scale: 0.000000
12:50:58 INFO opendrift.models.basemodel.environment:248: ocean_mixed_layer_thickness: 50.000000
12:50:58 DEBUG opendrift.models.basemodel:95: Changed mode from Mode.Config to Mode.Ready
12:50:58 DEBUG opendrift.models.basemodel:95: Changed mode from Mode.Ready to Mode.Run
12:50:58 DEBUG opendrift.models.basemodel:1778:
------------------------------------------------------
Software and hardware:
OpenDrift version 1.11.13
Platform: Linux, 5.15.0-1057-aws
69.05993270874023 GB memory
36 processors (x86_64)
NumPy version 1.26.4
SciPy version 1.14.1
Matplotlib version 3.9.1
NetCDF4 version 1.6.1
Xarray version 2024.10.0
ADIOS (adios_db) version 1.1.1
Copernicusmarine version 1.3.4
Python version 3.11.6 | packaged by conda-forge | (main, Oct 3 2023, 10:40:35) [GCC 12.3.0]
------------------------------------------------------
12:50:58 DEBUG opendrift.models.basemodel:1792: No output file is specified, neglecting export_buffer_length
12:50:58 DEBUG opendrift.models.basemodel:1910: Finalizing environment and preparing readers for simulation coverage ([-4.71627286447143, 55.39190523302233, 13.715758357177728, 64.60825116956556]) and time (2024-11-08 00:00:00 to 2024-11-10 23:00:00)
12:50:58 DEBUG opendrift.models.basemodel.environment:180: Preparing NorKyst manual aggregate for extent [-4.71627286447143, 55.39190523302233, 13.715758357177728, 64.60825116956556]
12:50:58 DEBUG opendrift.readers.basereader.structured:153: Clearing cache for reader NorKyst manual aggregate before starting new simulation
12:50:58 DEBUG opendrift.readers.basereader.variables:608: Setting buffer size 11 for reader NorKyst manual aggregate, assuming a maximum average speed of 2 m/s and time span of 1:00:00
12:50:58 DEBUG opendrift.readers.basereader.variables:549: Nothing more to prepare for NorKyst manual aggregate
12:50:58 DEBUG opendrift.models.basemodel.environment:180: Preparing global_landmask for extent [-4.71627286447143, 55.39190523302233, 13.715758357177728, 64.60825116956556]
12:50:58 DEBUG opendrift.readers.basereader.variables:549: Nothing more to prepare for global_landmask
12:50:58 INFO opendrift.models.basemodel:936: Using existing reader for land_binary_mask
12:50:58 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:50:58 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
12:50:58 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:50:58 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
12:50:58 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:50:58 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:50:58 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
12:50:58 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
12:50:58 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
12:50:58 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
12:50:58 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:50:58 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
12:50:58 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
12:50:58 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
12:50:58 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
12:50:58 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
12:50:58 INFO opendrift.models.basemodel:947: All points are in ocean
12:50:58 DEBUG opendrift.models.basemodel:891: to be seeded: 1000, already seeded 0
12:50:58 DEBUG opendrift.models.basemodel:909: Released 1000 new elements.
12:50:58 WARNING opendrift.models.basemodel:730: Seafloor check not being run because environment is missing. This will happen the first time the function is run but if it happens subsequently there is probably a problem.
12:50:58 DEBUG opendrift.models.basemodel:2037: ======================================================================
12:50:58 INFO opendrift.models.basemodel:2038: 2024-11-08 00:00:00 - step 1 of 71 - 1000 active elements (0 deactivated)
12:50:58 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
12:50:58 DEBUG opendrift.models.basemodel:2046: ======================================================================
12:50:58 DEBUG opendrift.models.basemodel:2057: 59.99731 <- latitude -> 60.002846
12:50:58 DEBUG opendrift.models.basemodel:2062: 4.4945407 <- longitude -> 4.504945
12:50:58 DEBUG opendrift.models.basemodel:2065: z = 0.0
12:50:58 DEBUG opendrift.models.basemodel:2068: ---------------------------------
12:50:58 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:50:58 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
12:50:58 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:50:58 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
12:50:58 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:50:58 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:50:58 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
12:50:58 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-08 00:00:00 (before)
2024-11-08 01:00:00 (after)
12:51:11 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
12:51:11 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
12:51:11 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
12:51:11 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
12:51:11 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
12:51:11 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
12:51:11 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 22x23x7) for time before (2024-11-08 00:00:00)
12:51:11 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-08 00:00:00) in space (linearNDFast)
12:51:11 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
12:51:11 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
12:51:11 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.50547356643384 and -65.49506707409589 degrees.
12:51:11 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.50547356643384 and -65.49506707409589 degrees.
12:51:11 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:51:11 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:51:11 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
12:51:11 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:51:11 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
12:51:11 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:51:11 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:51:11 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
12:51:11 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
12:51:11 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
12:51:11 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
12:51:11 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:51:11 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
12:51:11 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
12:51:11 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
12:51:11 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
12:51:11 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.210132 (min) 0.22971 (max)
12:51:11 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.456923 (min) 0.501266 (max)
12:51:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.195853 (min) -0.194241 (max)
12:51:11 DEBUG opendrift.models.basemodel.environment:905: x_wind: 0.713765 (min) 0.718199 (max)
12:51:11 DEBUG opendrift.models.basemodel.environment:905: y_wind: 9.47233 (min) 9.52267 (max)
12:51:11 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 6.17335e-07 (min) 7.52694e-07 (max)
12:51:11 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
12:51:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
12:51:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
12:51:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
12:51:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
12:51:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
12:51:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
12:51:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
12:51:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
12:51:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
12:51:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
12:51:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
12:51:11 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
12:51:11 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
12:51:11 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
12:51:11 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
12:51:11 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
12:51:11 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 298.369 (min) 298.632 (max)
12:51:11 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
12:51:11 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
12:51:11 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.219912, mean: 2.231547, max: 2.243291
12:51:11 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
12:51:11 DEBUG opendrift.models.physics_methods:1061: min: 8.117035, mean: 8.138277, max: 8.159667
12:51:11 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.117035, mean: 8.138277, max: 8.159667
12:51:11 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
12:51:11 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:51:11 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
12:51:11 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
12:51:11 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.189990 m/s - 0.190988 m/s)
12:51:11 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
12:51:11 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
12:51:11 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
12:51:11 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
12:51:11 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
12:51:11 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:51:11 DEBUG opendrift.models.basemodel:2037: ======================================================================
12:51:11 INFO opendrift.models.basemodel:2038: 2024-11-08 01:00:00 - step 2 of 71 - 1000 active elements (0 deactivated)
12:51:11 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
12:51:11 DEBUG opendrift.models.basemodel:2046: ======================================================================
12:51:11 DEBUG opendrift.models.basemodel:2057: 60.01925518324957 <- latitude -> 60.023959760184916
12:51:11 DEBUG opendrift.models.basemodel:2062: 4.5090254348021555 <- longitude -> 4.5206286318510625
12:51:11 DEBUG opendrift.models.basemodel:2065: z = 0.0
12:51:11 DEBUG opendrift.models.basemodel:2068: ---------------------------------
12:51:11 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:51:11 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
12:51:11 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:51:11 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
12:51:11 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:51:11 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:51:11 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
12:51:11 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-08 01:00:00 (before)
2024-11-08 02:00:00 (after)
12:51:26 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
12:51:26 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
12:51:26 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
12:51:26 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
12:51:26 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
12:51:26 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
12:51:26 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 22x23x7) for time before (2024-11-08 01:00:00)
12:51:26 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-08 01:00:00) in space (linearNDFast)
12:51:26 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
12:51:26 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
12:51:26 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.4909854746843 and -65.4793822801393 degrees.
12:51:26 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.4909854746843 and -65.4793822801393 degrees.
12:51:26 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:51:26 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:51:26 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
12:51:26 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:51:26 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
12:51:26 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:51:26 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:51:26 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
12:51:26 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
12:51:26 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
12:51:26 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
12:51:26 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:51:26 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
12:51:26 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
12:51:26 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
12:51:26 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
12:51:26 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.301309 (min) 0.319012 (max)
12:51:26 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.357301 (min) 0.373825 (max)
12:51:26 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.107226 (min) -0.106349 (max)
12:51:26 DEBUG opendrift.models.basemodel.environment:905: x_wind: 0.236685 (min) 0.318572 (max)
12:51:26 DEBUG opendrift.models.basemodel.environment:905: y_wind: 8.96121 (min) 8.98144 (max)
12:51:26 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 1.56203e-05 (min) 1.56698e-05 (max)
12:51:26 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
12:51:26 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
12:51:26 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
12:51:26 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
12:51:26 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
12:51:26 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
12:51:26 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
12:51:26 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
12:51:26 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
12:51:26 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
12:51:26 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
12:51:26 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
12:51:26 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
12:51:26 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
12:51:26 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
12:51:26 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
12:51:26 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
12:51:26 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 299.182 (min) 299.393 (max)
12:51:26 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
12:51:26 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
12:51:26 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.977855, mean: 1.982280, max: 1.986133
12:51:26 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
12:51:26 DEBUG opendrift.models.physics_methods:1061: min: 7.661729, mean: 7.670295, max: 7.677748
12:51:26 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.661729, mean: 7.670295, max: 7.677748
12:51:26 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
12:51:26 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:51:26 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
12:51:26 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
12:51:26 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.179333 m/s - 0.179708 m/s)
12:51:26 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
12:51:26 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
12:51:26 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
12:51:26 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
12:51:26 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
12:51:26 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:51:26 DEBUG opendrift.models.basemodel:2037: ======================================================================
12:51:26 INFO opendrift.models.basemodel:2038: 2024-11-08 02:00:00 - step 3 of 71 - 1000 active elements (0 deactivated)
12:51:26 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
12:51:26 DEBUG opendrift.models.basemodel:2046: ======================================================================
12:51:26 DEBUG opendrift.models.basemodel:2057: 60.03673125814423 <- latitude -> 60.04143154936496
12:51:26 DEBUG opendrift.models.basemodel:2062: 4.528829417195416 <- longitude -> 4.541642592925025
12:51:26 DEBUG opendrift.models.basemodel:2065: z = 0.0
12:51:26 DEBUG opendrift.models.basemodel:2068: ---------------------------------
12:51:26 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:51:26 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
12:51:26 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:51:26 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
12:51:26 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:51:26 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:51:26 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
12:51:26 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-08 02:00:00 (before)
2024-11-08 03:00:00 (after)
12:51:36 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
12:51:36 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
12:51:36 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
12:51:36 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
12:51:36 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
12:51:36 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
12:51:36 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 22x23x7) for time before (2024-11-08 02:00:00)
12:51:36 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-08 02:00:00) in space (linearNDFast)
12:51:36 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
12:51:36 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
12:51:37 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.47118149008014 and -65.45836830279043 degrees.
12:51:37 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.47118149008014 and -65.45836830279043 degrees.
12:51:37 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:51:37 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:51:37 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
12:51:37 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:51:37 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
12:51:37 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:51:37 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:51:37 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
12:51:37 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
12:51:37 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
12:51:37 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
12:51:37 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:51:37 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
12:51:37 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
12:51:37 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
12:51:37 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
12:51:37 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.374514 (min) 0.385421 (max)
12:51:37 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.249226 (min) 0.262055 (max)
12:51:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.0952556 (min) -0.0939549 (max)
12:51:37 DEBUG opendrift.models.basemodel.environment:905: x_wind: 0.214746 (min) 0.298614 (max)
12:51:37 DEBUG opendrift.models.basemodel.environment:905: y_wind: 9.0826 (min) 9.13867 (max)
12:51:37 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -4.74015e-07 (min) -9.55628e-08 (max)
12:51:37 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
12:51:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
12:51:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
12:51:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
12:51:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
12:51:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
12:51:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
12:51:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
12:51:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
12:51:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
12:51:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
12:51:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
12:51:37 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
12:51:37 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
12:51:37 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
12:51:37 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
12:51:37 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
12:51:37 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 299.612 (min) 299.789 (max)
12:51:37 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
12:51:37 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
12:51:37 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.031444, mean: 2.044418, max: 2.055612
12:51:37 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
12:51:37 DEBUG opendrift.models.physics_methods:1061: min: 7.764830, mean: 7.789583, max: 7.810882
12:51:37 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.764830, mean: 7.789583, max: 7.810882
12:51:37 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
12:51:37 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:51:37 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
12:51:37 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
12:51:37 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.181746 m/s - 0.182824 m/s)
12:51:37 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
12:51:37 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
12:51:37 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
12:51:37 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
12:51:37 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
12:51:37 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:51:37 DEBUG opendrift.models.basemodel:2037: ======================================================================
12:51:37 INFO opendrift.models.basemodel:2038: 2024-11-08 03:00:00 - step 4 of 71 - 1000 active elements (0 deactivated)
12:51:37 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
12:51:37 DEBUG opendrift.models.basemodel:2046: ======================================================================
12:51:37 DEBUG opendrift.models.basemodel:2057: 60.050732987633566 <- latitude -> 60.05571298118001
12:51:37 DEBUG opendrift.models.basemodel:2062: 4.5538127520877225 <- longitude -> 4.566391217740104
12:51:37 DEBUG opendrift.models.basemodel:2065: z = 0.0
12:51:37 DEBUG opendrift.models.basemodel:2068: ---------------------------------
12:51:37 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:51:37 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
12:51:37 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:51:37 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
12:51:37 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:51:37 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:51:37 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
12:51:37 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-08 03:00:00 (before)
2024-11-08 04:00:00 (after)
12:51:55 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
12:51:55 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
12:51:55 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
12:51:55 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
12:51:55 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
12:51:55 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
12:51:55 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-11-08 03:00:00)
12:51:55 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-08 03:00:00) in space (linearNDFast)
12:51:55 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
12:51:55 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
12:51:55 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.44619815356467 and -65.43361968263382 degrees.
12:51:55 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.44619815356467 and -65.43361968263382 degrees.
12:51:55 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:51:55 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:51:55 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
12:51:55 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:51:55 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
12:51:55 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:51:55 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:51:55 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
12:51:55 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
12:51:55 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
12:51:55 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
12:51:55 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:51:55 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
12:51:55 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
12:51:55 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
12:51:55 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
12:51:55 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.347589 (min) 0.366294 (max)
12:51:55 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.161631 (min) 0.184742 (max)
12:51:55 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.155303 (min) -0.152706 (max)
12:51:55 DEBUG opendrift.models.basemodel.environment:905: x_wind: -0.782212 (min) -0.738163 (max)
12:51:55 DEBUG opendrift.models.basemodel.environment:905: y_wind: 9.13525 (min) 9.14657 (max)
12:51:55 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -2.16465e-05 (min) -2.1054e-05 (max)
12:51:55 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
12:51:55 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
12:51:55 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
12:51:55 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
12:51:55 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
12:51:55 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
12:51:55 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
12:51:55 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
12:51:55 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
12:51:55 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
12:51:55 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
12:51:55 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
12:51:55 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
12:51:55 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
12:51:55 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
12:51:55 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
12:51:55 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
12:51:55 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 299.965 (min) 300.115 (max)
12:51:55 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
12:51:55 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
12:51:55 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.066622, mean: 2.070499, max: 2.072855
12:51:55 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
12:51:55 DEBUG opendrift.models.physics_methods:1061: min: 7.831772, mean: 7.839115, max: 7.843575
12:51:55 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.831772, mean: 7.839115, max: 7.843575
12:51:55 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
12:51:55 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:51:55 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
12:51:55 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
12:51:55 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.183313 m/s - 0.183589 m/s)
12:51:55 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
12:51:55 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
12:51:55 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
12:51:55 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
12:51:55 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
12:51:55 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:51:55 DEBUG opendrift.models.basemodel:2037: ======================================================================
12:51:55 INFO opendrift.models.basemodel:2038: 2024-11-08 04:00:00 - step 5 of 71 - 1000 active elements (0 deactivated)
12:51:55 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
12:51:55 DEBUG opendrift.models.basemodel:2046: ======================================================================
12:51:55 DEBUG opendrift.models.basemodel:2057: 60.06186163898535 <- latitude -> 60.06733939320523
12:51:55 DEBUG opendrift.models.basemodel:2062: 4.576465344242001 <- longitude -> 4.588023377627226
12:51:55 DEBUG opendrift.models.basemodel:2065: z = 0.0
12:51:55 DEBUG opendrift.models.basemodel:2068: ---------------------------------
12:51:55 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:51:55 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
12:51:55 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:51:55 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
12:51:55 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:51:55 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:51:55 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
12:51:55 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-08 04:00:00 (before)
2024-11-08 05:00:00 (after)
12:52:11 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
12:52:11 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
12:52:11 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
12:52:11 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
12:52:11 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
12:52:11 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
12:52:11 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-11-08 04:00:00)
12:52:11 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-08 04:00:00) in space (linearNDFast)
12:52:11 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
12:52:11 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
12:52:11 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.42354554631066 and -65.41198752063892 degrees.
12:52:11 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.42354554631066 and -65.41198752063892 degrees.
12:52:11 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:52:11 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:52:11 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
12:52:11 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:52:11 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
12:52:11 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:52:11 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:52:11 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
12:52:11 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
12:52:11 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
12:52:11 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
12:52:11 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:52:11 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
12:52:11 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
12:52:11 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
12:52:11 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
12:52:11 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.217452 (min) 0.250318 (max)
12:52:11 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.148113 (min) 0.178663 (max)
12:52:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.267491 (min) -0.264443 (max)
12:52:11 DEBUG opendrift.models.basemodel.environment:905: x_wind: -1.52563 (min) -1.44828 (max)
12:52:11 DEBUG opendrift.models.basemodel.environment:905: y_wind: 9.47003 (min) 9.48817 (max)
12:52:11 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -3.33745e-05 (min) -3.32625e-05 (max)
12:52:11 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
12:52:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
12:52:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
12:52:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
12:52:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
12:52:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
12:52:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
12:52:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
12:52:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
12:52:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
12:52:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
12:52:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
12:52:11 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
12:52:11 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
12:52:11 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
12:52:11 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
12:52:11 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
12:52:11 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 300.244 (min) 300.325 (max)
12:52:11 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
12:52:11 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
12:52:11 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.262467, mean: 2.264209, max: 2.266814
12:52:11 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
12:52:11 DEBUG opendrift.models.physics_methods:1061: min: 8.194468, mean: 8.197621, max: 8.202336
12:52:11 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.194468, mean: 8.197621, max: 8.202336
12:52:11 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
12:52:11 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:52:11 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
12:52:11 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
12:52:11 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.191802 m/s - 0.191986 m/s)
12:52:11 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
12:52:11 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
12:52:11 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
12:52:11 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
12:52:11 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
12:52:11 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:52:11 DEBUG opendrift.models.basemodel:2037: ======================================================================
12:52:11 INFO opendrift.models.basemodel:2038: 2024-11-08 05:00:00 - step 6 of 71 - 1000 active elements (0 deactivated)
12:52:11 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
12:52:11 DEBUG opendrift.models.basemodel:2046: ======================================================================
12:52:11 DEBUG opendrift.models.basemodel:2057: 60.07288764914679 <- latitude -> 60.07897665900941
12:52:11 DEBUG opendrift.models.basemodel:2062: 4.590682594630607 <- longitude -> 4.600240907421786
12:52:11 DEBUG opendrift.models.basemodel:2065: z = 0.0
12:52:11 DEBUG opendrift.models.basemodel:2068: ---------------------------------
12:52:11 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:52:11 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
12:52:11 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:52:11 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
12:52:11 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:52:11 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:52:11 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
12:52:11 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-08 05:00:00 (before)
2024-11-08 06:00:00 (after)
12:52:27 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
12:52:27 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
12:52:27 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
12:52:27 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
12:52:27 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
12:52:27 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
12:52:27 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-11-08 05:00:00)
12:52:27 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-08 05:00:00) in space (linearNDFast)
12:52:27 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
12:52:27 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
12:52:27 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.40932829436704 and -65.39976997900831 degrees.
12:52:27 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.40932829436704 and -65.39976997900831 degrees.
12:52:27 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:52:27 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:52:27 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
12:52:27 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:52:27 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
12:52:27 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:52:27 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:52:27 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
12:52:27 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
12:52:27 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
12:52:27 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
12:52:27 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:52:27 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
12:52:27 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
12:52:27 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
12:52:27 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
12:52:27 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.0759154 (min) 0.0915553 (max)
12:52:27 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.210238 (min) 0.253489 (max)
12:52:27 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.42035 (min) -0.418198 (max)
12:52:27 DEBUG opendrift.models.basemodel.environment:905: x_wind: -1.53537 (min) -1.47082 (max)
12:52:27 DEBUG opendrift.models.basemodel.environment:905: y_wind: 9.85446 (min) 9.87983 (max)
12:52:27 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -4.19394e-05 (min) -4.17001e-05 (max)
12:52:27 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
12:52:27 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
12:52:27 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
12:52:27 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
12:52:27 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
12:52:27 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
12:52:27 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
12:52:27 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
12:52:27 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
12:52:27 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
12:52:27 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
12:52:27 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
12:52:27 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
12:52:27 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
12:52:27 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
12:52:27 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
12:52:27 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
12:52:27 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 300.208 (min) 300.299 (max)
12:52:27 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
12:52:27 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
12:52:27 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.442251, mean: 2.451276, max: 2.459224
12:52:27 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
12:52:27 DEBUG opendrift.models.physics_methods:1061: min: 8.513826, mean: 8.529541, max: 8.543359
12:52:27 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.513826, mean: 8.529541, max: 8.543359
12:52:27 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
12:52:27 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:52:27 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
12:52:27 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
12:52:27 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.199277 m/s - 0.199968 m/s)
12:52:27 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
12:52:27 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
12:52:27 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
12:52:27 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
12:52:27 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
12:52:27 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:52:27 DEBUG opendrift.models.basemodel:2037: ======================================================================
12:52:27 INFO opendrift.models.basemodel:2038: 2024-11-08 06:00:00 - step 7 of 71 - 1000 active elements (0 deactivated)
12:52:27 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
12:52:27 DEBUG opendrift.models.basemodel:2046: ======================================================================
12:52:27 DEBUG opendrift.models.basemodel:2057: 60.08616893285428 <- latitude -> 60.093116329247835
12:52:27 DEBUG opendrift.models.basemodel:2062: 4.594612220115568 <- longitude -> 4.603801875075114
12:52:27 DEBUG opendrift.models.basemodel:2065: z = 0.0
12:52:27 DEBUG opendrift.models.basemodel:2068: ---------------------------------
12:52:27 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:52:27 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
12:52:27 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:52:27 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
12:52:27 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:52:27 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:52:27 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
12:52:27 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-08 06:00:00 (before)
2024-11-08 07:00:00 (after)
12:52:42 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
12:52:42 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
12:52:42 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
12:52:42 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
12:52:42 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
12:52:42 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
12:52:42 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 23x22x7) for time before (2024-11-08 06:00:00)
12:52:42 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-08 06:00:00) in space (linearNDFast)
12:52:42 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
12:52:42 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
12:52:42 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.40539865995557 and -65.39620900634854 degrees.
12:52:42 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.40539865995557 and -65.39620900634854 degrees.
12:52:42 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:52:42 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:52:42 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
12:52:42 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:52:42 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
12:52:42 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:52:42 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:52:42 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
12:52:42 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
12:52:42 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
12:52:42 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
12:52:42 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:52:42 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
12:52:42 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
12:52:42 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
12:52:42 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
12:52:42 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.00331376 (min) 0.0124691 (max)
12:52:42 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.324157 (min) 0.362922 (max)
12:52:42 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.559465 (min) -0.557627 (max)
12:52:42 DEBUG opendrift.models.basemodel.environment:905: x_wind: -1.1933 (min) -1.11563 (max)
12:52:42 DEBUG opendrift.models.basemodel.environment:905: y_wind: 9.68755 (min) 9.69748 (max)
12:52:42 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -3.22231e-05 (min) -3.20839e-05 (max)
12:52:42 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
12:52:42 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
12:52:42 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
12:52:42 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
12:52:42 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
12:52:42 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
12:52:42 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
12:52:42 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
12:52:42 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
12:52:42 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
12:52:42 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
12:52:42 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
12:52:42 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
12:52:42 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
12:52:42 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
12:52:42 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
12:52:42 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
12:52:42 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 299.814 (min) 300.081 (max)
12:52:42 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
12:52:42 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
12:52:42 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.342359, mean: 2.343648, max: 2.345234
12:52:42 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
12:52:42 DEBUG opendrift.models.physics_methods:1061: min: 8.337894, mean: 8.340187, max: 8.343009
12:52:42 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.337894, mean: 8.340187, max: 8.343009
12:52:42 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
12:52:42 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:52:42 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
12:52:42 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
12:52:42 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.195159 m/s - 0.195279 m/s)
12:52:42 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
12:52:42 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
12:52:42 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
12:52:42 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
12:52:42 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
12:52:42 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:52:42 DEBUG opendrift.models.basemodel:2037: ======================================================================
12:52:42 INFO opendrift.models.basemodel:2038: 2024-11-08 07:00:00 - step 8 of 71 - 1000 active elements (0 deactivated)
12:52:42 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
12:52:42 DEBUG opendrift.models.basemodel:2046: ======================================================================
12:52:42 DEBUG opendrift.models.basemodel:2057: 60.10311938302431 <- latitude -> 60.110919991863966
12:52:42 DEBUG opendrift.models.basemodel:2062: 4.593646789374961 <- longitude -> 4.602984497064547
12:52:42 DEBUG opendrift.models.basemodel:2065: z = 0.0
12:52:42 DEBUG opendrift.models.basemodel:2068: ---------------------------------
12:52:42 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:52:42 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
12:52:42 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:52:42 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
12:52:42 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:52:42 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:52:42 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
12:52:42 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-08 07:00:00 (before)
2024-11-08 08:00:00 (after)
12:52:54 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
12:52:54 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
12:52:54 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
12:52:54 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
12:52:54 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
12:52:54 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
12:52:54 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 23x22x7) for time before (2024-11-08 07:00:00)
12:52:54 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-08 07:00:00) in space (linearNDFast)
12:52:54 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
12:52:54 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
12:52:54 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.40636409007053 and -65.39702637268641 degrees.
12:52:54 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.40636409007053 and -65.39702637268641 degrees.
12:52:54 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:52:54 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:52:54 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
12:52:54 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:52:54 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
12:52:54 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:52:54 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:52:54 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
12:52:54 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
12:52:54 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
12:52:54 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
12:52:54 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:52:54 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
12:52:54 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
12:52:54 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
12:52:54 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
12:52:54 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.00794446 (min) 0.0122049 (max)
12:52:54 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.413877 (min) 0.454744 (max)
12:52:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.648085 (min) -0.646399 (max)
12:52:54 DEBUG opendrift.models.basemodel.environment:905: x_wind: -1.59438 (min) -1.50087 (max)
12:52:54 DEBUG opendrift.models.basemodel.environment:905: y_wind: 9.45487 (min) 9.47375 (max)
12:52:54 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -1.59364e-05 (min) -1.58702e-05 (max)
12:52:54 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
12:52:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
12:52:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
12:52:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
12:52:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
12:52:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
12:52:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
12:52:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
12:52:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
12:52:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
12:52:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
12:52:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
12:52:54 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
12:52:54 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
12:52:54 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
12:52:54 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
12:52:54 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
12:52:54 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 299.15 (min) 299.583 (max)
12:52:54 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
12:52:54 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
12:52:54 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.255032, mean: 2.262348, max: 2.270431
12:52:54 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
12:52:54 DEBUG opendrift.models.physics_methods:1061: min: 8.180991, mean: 8.194250, max: 8.208877
12:52:54 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.180991, mean: 8.194250, max: 8.208877
12:52:54 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
12:52:54 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:52:54 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
12:52:54 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
12:52:54 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.191487 m/s - 0.192139 m/s)
12:52:54 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
12:52:54 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
12:52:54 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
12:52:54 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
12:52:54 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
12:52:54 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:52:54 DEBUG opendrift.models.basemodel:2037: ======================================================================
12:52:54 INFO opendrift.models.basemodel:2038: 2024-11-08 08:00:00 - step 9 of 71 - 1000 active elements (0 deactivated)
12:52:54 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
12:52:54 DEBUG opendrift.models.basemodel:2046: ======================================================================
12:52:54 DEBUG opendrift.models.basemodel:2057: 60.122955769325344 <- latitude -> 60.131156268485256
12:52:54 DEBUG opendrift.models.basemodel:2062: 4.592271701747929 <- longitude -> 4.601676328722887
12:52:54 DEBUG opendrift.models.basemodel:2065: z = 0.0
12:52:54 DEBUG opendrift.models.basemodel:2068: ---------------------------------
12:52:54 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:52:54 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
12:52:54 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:52:54 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
12:52:54 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:52:54 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:52:54 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
12:52:54 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-08 08:00:00 (before)
2024-11-08 09:00:00 (after)
12:53:06 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
12:53:06 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
12:53:06 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
12:53:06 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
12:53:06 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
12:53:06 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
12:53:06 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-11-08 08:00:00)
12:53:06 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-08 08:00:00) in space (linearNDFast)
12:53:06 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
12:53:06 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
12:53:06 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.40773916985034 and -65.39833454489775 degrees.
12:53:06 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.40773916985034 and -65.39833454489775 degrees.
12:53:06 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:53:06 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:53:06 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
12:53:06 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:53:06 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
12:53:06 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:53:06 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:53:06 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
12:53:06 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
12:53:06 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
12:53:06 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
12:53:06 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:53:06 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
12:53:06 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
12:53:06 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
12:53:06 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
12:53:06 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.000542333 (min) 0.0140756 (max)
12:53:06 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.441684 (min) 0.473929 (max)
12:53:06 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.663621 (min) -0.661988 (max)
12:53:06 DEBUG opendrift.models.basemodel.environment:905: x_wind: -2.12259 (min) -2.02848 (max)
12:53:06 DEBUG opendrift.models.basemodel.environment:905: y_wind: 9.08497 (min) 9.12168 (max)
12:53:06 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 6.23458e-06 (min) 6.28076e-06 (max)
12:53:06 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
12:53:06 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
12:53:06 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
12:53:06 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
12:53:06 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
12:53:06 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
12:53:06 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
12:53:06 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
12:53:06 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
12:53:06 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
12:53:06 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
12:53:06 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
12:53:06 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
12:53:06 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
12:53:06 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
12:53:06 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
12:53:06 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
12:53:06 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 298.556 (min) 298.955 (max)
12:53:06 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
12:53:06 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
12:53:06 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.136052, mean: 2.144194, max: 2.151398
12:53:06 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
12:53:06 DEBUG opendrift.models.physics_methods:1061: min: 7.962244, mean: 7.977403, max: 7.990794
12:53:06 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.962244, mean: 7.977403, max: 7.990794
12:53:06 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
12:53:06 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:53:06 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
12:53:06 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
12:53:06 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.186367 m/s - 0.187035 m/s)
12:53:06 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
12:53:06 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
12:53:06 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
12:53:06 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
12:53:06 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
12:53:06 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:53:06 DEBUG opendrift.models.basemodel:2037: ======================================================================
12:53:06 INFO opendrift.models.basemodel:2038: 2024-11-08 09:00:00 - step 10 of 71 - 1000 active elements (0 deactivated)
12:53:06 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
12:53:06 DEBUG opendrift.models.basemodel:2046: ======================================================================
12:53:06 DEBUG opendrift.models.basemodel:2057: 60.14362535183693 <- latitude -> 60.151799142553514
12:53:06 DEBUG opendrift.models.basemodel:2062: 4.589825022113817 <- longitude -> 4.599786056477398
12:53:06 DEBUG opendrift.models.basemodel:2065: z = 0.0
12:53:06 DEBUG opendrift.models.basemodel:2068: ---------------------------------
12:53:06 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:53:06 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
12:53:06 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:53:06 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
12:53:06 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:53:06 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:53:06 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
12:53:06 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-08 09:00:00 (before)
2024-11-08 10:00:00 (after)
12:53:17 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
12:53:17 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
12:53:17 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
12:53:17 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
12:53:17 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
12:53:17 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
12:53:17 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 23x22x7) for time before (2024-11-08 09:00:00)
12:53:17 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-08 09:00:00) in space (linearNDFast)
12:53:17 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
12:53:17 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
12:53:17 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.4101858453742 and -65.40022480236075 degrees.
12:53:17 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.4101858453742 and -65.40022480236075 degrees.
12:53:17 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:53:17 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:53:17 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
12:53:17 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:53:17 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
12:53:17 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:53:17 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:53:17 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
12:53:17 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
12:53:17 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
12:53:17 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
12:53:17 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:53:17 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
12:53:17 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
12:53:17 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
12:53:17 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
12:53:17 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.0243661 (min) -0.00756787 (max)
12:53:17 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.48037 (min) 0.51316 (max)
12:53:17 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.602285 (min) -0.600117 (max)
12:53:17 DEBUG opendrift.models.basemodel.environment:905: x_wind: 0.652992 (min) 0.744117 (max)
12:53:17 DEBUG opendrift.models.basemodel.environment:905: y_wind: 8.37194 (min) 8.56641 (max)
12:53:17 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 2.60616e-05 (min) 2.63214e-05 (max)
12:53:17 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
12:53:17 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
12:53:17 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
12:53:17 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
12:53:17 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
12:53:17 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
12:53:17 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
12:53:17 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
12:53:17 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
12:53:17 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
12:53:17 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
12:53:17 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
12:53:17 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
12:53:17 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
12:53:17 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
12:53:17 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
12:53:17 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
12:53:17 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 298.657 (min) 298.814 (max)
12:53:17 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
12:53:17 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
12:53:17 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.737820, mean: 1.774073, max: 1.815760
12:53:17 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
12:53:17 DEBUG opendrift.models.physics_methods:1061: min: 7.181777, mean: 7.256253, max: 7.341062
12:53:17 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.181777, mean: 7.256253, max: 7.341062
12:53:17 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
12:53:17 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:53:17 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
12:53:17 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
12:53:17 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.168099 m/s - 0.171827 m/s)
12:53:17 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
12:53:17 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
12:53:17 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
12:53:17 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
12:53:17 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
12:53:17 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:53:17 DEBUG opendrift.models.basemodel:2037: ======================================================================
12:53:17 INFO opendrift.models.basemodel:2038: 2024-11-08 10:00:00 - step 11 of 71 - 1000 active elements (0 deactivated)
12:53:17 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
12:53:17 DEBUG opendrift.models.basemodel:2046: ======================================================================
12:53:17 DEBUG opendrift.models.basemodel:2057: 60.16482284620439 <- latitude -> 60.173685516104115
12:53:17 DEBUG opendrift.models.basemodel:2062: 4.589279930710209 <- longitude -> 4.600142319974649
12:53:17 DEBUG opendrift.models.basemodel:2065: z = 0.0
12:53:17 DEBUG opendrift.models.basemodel:2068: ---------------------------------
12:53:17 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:53:17 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
12:53:17 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:53:17 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
12:53:17 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:53:17 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:53:17 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
12:53:17 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-08 10:00:00 (before)
2024-11-08 11:00:00 (after)
12:53:30 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
12:53:30 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
12:53:30 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
12:53:30 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
12:53:30 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
12:53:30 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
12:53:30 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 24x22x7) for time before (2024-11-08 10:00:00)
12:53:30 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-08 10:00:00) in space (linearNDFast)
12:53:30 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
12:53:30 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
12:53:30 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.41073094293404 and -65.39986854125594 degrees.
12:53:30 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.41073094293404 and -65.39986854125594 degrees.
12:53:30 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:53:30 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:53:30 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
12:53:30 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:53:30 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
12:53:30 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:53:30 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:53:30 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
12:53:30 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
12:53:30 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
12:53:30 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
12:53:30 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:53:30 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
12:53:30 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
12:53:30 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
12:53:30 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
12:53:30 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.00837861 (min) 0.00956914 (max)
12:53:30 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.518007 (min) 0.544837 (max)
12:53:30 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.477972 (min) -0.475106 (max)
12:53:30 DEBUG opendrift.models.basemodel.environment:905: x_wind: -0.746087 (min) -0.728571 (max)
12:53:30 DEBUG opendrift.models.basemodel.environment:905: y_wind: 9.00994 (min) 9.04436 (max)
12:53:30 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 3.80021e-05 (min) 3.82311e-05 (max)
12:53:30 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
12:53:30 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
12:53:30 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
12:53:30 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
12:53:30 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
12:53:30 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
12:53:30 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
12:53:30 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
12:53:30 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
12:53:30 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
12:53:30 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
12:53:30 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
12:53:30 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
12:53:30 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
12:53:30 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
12:53:30 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
12:53:30 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
12:53:30 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 299.188 (min) 299.407 (max)
12:53:30 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
12:53:30 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
12:53:30 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.010649, mean: 2.017603, max: 2.025477
12:53:30 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
12:53:30 DEBUG opendrift.models.physics_methods:1061: min: 7.724987, mean: 7.738333, max: 7.753419
12:53:30 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.724987, mean: 7.738333, max: 7.753419
12:53:30 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
12:53:30 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:53:30 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
12:53:30 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
12:53:30 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.180813 m/s - 0.181479 m/s)
12:53:30 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
12:53:30 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
12:53:30 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
12:53:30 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
12:53:30 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
12:53:30 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:53:30 DEBUG opendrift.models.basemodel:2037: ======================================================================
12:53:30 INFO opendrift.models.basemodel:2038: 2024-11-08 11:00:00 - step 12 of 71 - 1000 active elements (0 deactivated)
12:53:30 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
12:53:30 DEBUG opendrift.models.basemodel:2046: ======================================================================
12:53:30 DEBUG opendrift.models.basemodel:2057: 60.18760344549666 <- latitude -> 60.19705012079845
12:53:30 DEBUG opendrift.models.basemodel:2062: 4.587788714593195 <- longitude -> 4.599803224057514
12:53:30 DEBUG opendrift.models.basemodel:2065: z = 0.0
12:53:30 DEBUG opendrift.models.basemodel:2068: ---------------------------------
12:53:30 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:53:30 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
12:53:30 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:53:30 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
12:53:30 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:53:30 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:53:30 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
12:53:30 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-08 11:00:00 (before)
2024-11-08 12:00:00 (after)
12:53:41 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
12:53:41 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
12:53:41 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
12:53:41 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
12:53:41 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
12:53:41 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
12:53:41 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 24x23x7) for time before (2024-11-08 11:00:00)
12:53:41 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-08 11:00:00) in space (linearNDFast)
12:53:41 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
12:53:41 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
12:53:41 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.41222214438733 and -65.40020762583734 degrees.
12:53:41 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.41222214438733 and -65.40020762583734 degrees.
12:53:41 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:53:41 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:53:41 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
12:53:41 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:53:41 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
12:53:41 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:53:41 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:53:41 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
12:53:41 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
12:53:41 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
12:53:41 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
12:53:41 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:53:41 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
12:53:41 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
12:53:41 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
12:53:41 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
12:53:41 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.0195111 (min) 0.0322372 (max)
12:53:41 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.50648 (min) 0.529441 (max)
12:53:41 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.327542 (min) -0.323516 (max)
12:53:41 DEBUG opendrift.models.basemodel.environment:905: x_wind: -0.533216 (min) -0.440119 (max)
12:53:41 DEBUG opendrift.models.basemodel.environment:905: y_wind: 8.44802 (min) 8.46745 (max)
12:53:41 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 4.35731e-05 (min) 4.38124e-05 (max)
12:53:41 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
12:53:41 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
12:53:41 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
12:53:41 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
12:53:41 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
12:53:41 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
12:53:41 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
12:53:41 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
12:53:41 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
12:53:41 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
12:53:41 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
12:53:41 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
12:53:41 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
12:53:41 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
12:53:41 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
12:53:41 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
12:53:41 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
12:53:41 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 299.964 (min) 300.155 (max)
12:53:41 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
12:53:41 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
12:53:41 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.760656, mean: 1.766257, max: 1.770452
12:53:41 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
12:53:41 DEBUG opendrift.models.physics_methods:1061: min: 7.228810, mean: 7.240299, max: 7.248892
12:53:41 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.228810, mean: 7.240299, max: 7.248892
12:53:41 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
12:53:41 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:53:41 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
12:53:41 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
12:53:41 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.169200 m/s - 0.169670 m/s)
12:53:41 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
12:53:41 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
12:53:41 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
12:53:41 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
12:53:41 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
12:53:41 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:53:41 DEBUG opendrift.models.basemodel:2037: ======================================================================
12:53:41 INFO opendrift.models.basemodel:2038: 2024-11-08 12:00:00 - step 13 of 71 - 1000 active elements (0 deactivated)
12:53:41 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
12:53:41 DEBUG opendrift.models.basemodel:2046: ======================================================================
12:53:41 DEBUG opendrift.models.basemodel:2057: 60.20957227493833 <- latitude -> 60.219551339897585
12:53:41 DEBUG opendrift.models.basemodel:2062: 4.5884702173290535 <- longitude -> 4.601203943775781
12:53:41 DEBUG opendrift.models.basemodel:2065: z = 0.0
12:53:41 DEBUG opendrift.models.basemodel:2068: ---------------------------------
12:53:41 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:53:41 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
12:53:41 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:53:41 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
12:53:41 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:53:41 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:53:41 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
12:53:41 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-08 12:00:00 (before)
2024-11-08 13:00:00 (after)
12:53:54 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
12:53:54 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
12:53:54 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
12:53:54 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
12:53:54 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
12:53:54 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
12:53:54 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 24x23x7) for time before (2024-11-08 12:00:00)
12:53:54 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-08 12:00:00) in space (linearNDFast)
12:53:54 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
12:53:54 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
12:53:54 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.41154063706685 and -65.39880690949215 degrees.
12:53:54 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.41154063706685 and -65.39880690949215 degrees.
12:53:54 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:53:54 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:53:54 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
12:53:54 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:53:54 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
12:53:54 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:53:54 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:53:54 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
12:53:54 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
12:53:54 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
12:53:54 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
12:53:54 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:53:54 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
12:53:54 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
12:53:54 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
12:53:54 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
12:53:54 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.0428372 (min) 0.0452305 (max)
12:53:54 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.473903 (min) 0.49064 (max)
12:53:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.180207 (min) -0.175704 (max)
12:53:54 DEBUG opendrift.models.basemodel.environment:905: x_wind: -0.605303 (min) -0.4504 (max)
12:53:54 DEBUG opendrift.models.basemodel.environment:905: y_wind: 7.29008 (min) 7.36271 (max)
12:53:54 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 3.86808e-05 (min) 3.87486e-05 (max)
12:53:54 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
12:53:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
12:53:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
12:53:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
12:53:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
12:53:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
12:53:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
12:53:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
12:53:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
12:53:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
12:53:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
12:53:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
12:53:54 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
12:53:54 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
12:53:54 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
12:53:54 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
12:53:54 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
12:53:54 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 300.5 (min) 300.572 (max)
12:53:54 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
12:53:54 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
12:53:54 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.313091, mean: 1.325953, max: 1.342248
12:53:54 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
12:53:54 DEBUG opendrift.models.physics_methods:1061: min: 6.242765, mean: 6.273255, max: 6.311693
12:53:54 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 6.242765, mean: 6.273255, max: 6.311693
12:53:54 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
12:53:54 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:53:54 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
12:53:54 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
12:53:54 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.146120 m/s - 0.147733 m/s)
12:53:54 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
12:53:54 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
12:53:54 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
12:53:54 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
12:53:54 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
12:53:54 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:53:54 DEBUG opendrift.models.basemodel:2037: ======================================================================
12:53:54 INFO opendrift.models.basemodel:2038: 2024-11-08 13:00:00 - step 14 of 71 - 1000 active elements (0 deactivated)
12:53:54 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
12:53:54 DEBUG opendrift.models.basemodel:2046: ======================================================================
12:53:54 DEBUG opendrift.models.basemodel:2057: 60.22963705673152 <- latitude -> 60.24014176596606
12:53:54 DEBUG opendrift.models.basemodel:2062: 4.590823095632945 <- longitude -> 4.603242597773122
12:53:54 DEBUG opendrift.models.basemodel:2065: z = 0.0
12:53:54 DEBUG opendrift.models.basemodel:2068: ---------------------------------
12:53:54 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:53:54 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
12:53:54 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:53:54 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
12:53:54 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:53:54 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:53:54 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
12:53:54 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-08 13:00:00 (before)
2024-11-08 14:00:00 (after)
12:54:09 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
12:54:09 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
12:54:09 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
12:54:09 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
12:54:09 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
12:54:09 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
12:54:09 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 23x22x7) for time before (2024-11-08 13:00:00)
12:54:09 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-08 13:00:00) in space (linearNDFast)
12:54:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
12:54:09 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
12:54:09 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.40918774700498 and -65.39676823275539 degrees.
12:54:09 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.40918774700498 and -65.39676823275539 degrees.
12:54:09 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:54:09 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:54:09 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
12:54:09 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:54:09 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
12:54:09 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:54:09 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:54:09 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
12:54:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
12:54:09 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
12:54:09 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
12:54:09 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:54:09 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
12:54:09 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
12:54:09 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
12:54:09 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
12:54:09 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.0603533 (min) 0.083146 (max)
12:54:09 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.413737 (min) 0.423446 (max)
12:54:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.0722653 (min) -0.0669551 (max)
12:54:09 DEBUG opendrift.models.basemodel.environment:905: x_wind: 1.12914 (min) 1.17904 (max)
12:54:09 DEBUG opendrift.models.basemodel.environment:905: y_wind: 7.05071 (min) 7.09407 (max)
12:54:09 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 2.22437e-05 (min) 2.2296e-05 (max)
12:54:09 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
12:54:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
12:54:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
12:54:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
12:54:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
12:54:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
12:54:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
12:54:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
12:54:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
12:54:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
12:54:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
12:54:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
12:54:09 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
12:54:09 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
12:54:09 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
12:54:09 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
12:54:09 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
12:54:09 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 300.554 (min) 300.661 (max)
12:54:09 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
12:54:09 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
12:54:09 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.254292, mean: 1.263647, max: 1.271780
12:54:09 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
12:54:09 DEBUG opendrift.models.physics_methods:1061: min: 6.101393, mean: 6.124099, max: 6.143778
12:54:09 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 6.101393, mean: 6.124099, max: 6.143778
12:54:09 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
12:54:09 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:54:09 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
12:54:09 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
12:54:09 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.142811 m/s - 0.143803 m/s)
12:54:09 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
12:54:09 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
12:54:09 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
12:54:09 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
12:54:09 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
12:54:09 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:54:09 DEBUG opendrift.models.basemodel:2037: ======================================================================
12:54:09 INFO opendrift.models.basemodel:2038: 2024-11-08 14:00:00 - step 15 of 71 - 1000 active elements (0 deactivated)
12:54:09 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
12:54:09 DEBUG opendrift.models.basemodel:2046: ======================================================================
12:54:09 DEBUG opendrift.models.basemodel:2057: 60.24761980824006 <- latitude -> 60.25837857287604
12:54:09 DEBUG opendrift.models.basemodel:2062: 4.597705800079597 <- longitude -> 4.608678534247586
12:54:09 DEBUG opendrift.models.basemodel:2065: z = 0.0
12:54:09 DEBUG opendrift.models.basemodel:2068: ---------------------------------
12:54:09 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:54:09 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
12:54:09 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:54:09 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
12:54:09 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:54:09 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:54:09 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
12:54:09 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-08 14:00:00 (before)
2024-11-08 15:00:00 (after)
12:54:20 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
12:54:20 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
12:54:20 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
12:54:20 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
12:54:20 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
12:54:20 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
12:54:20 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 24x22x7) for time before (2024-11-08 14:00:00)
12:54:20 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-08 14:00:00) in space (linearNDFast)
12:54:20 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
12:54:20 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
12:54:20 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.40230502973456 and -65.39133229376203 degrees.
12:54:20 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.40230502973456 and -65.39133229376203 degrees.
12:54:20 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:54:20 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:54:20 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
12:54:20 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:54:20 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
12:54:20 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:54:20 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:54:20 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
12:54:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
12:54:20 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
12:54:20 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
12:54:20 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:54:20 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
12:54:20 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
12:54:20 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
12:54:20 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
12:54:20 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.0397439 (min) 0.0801057 (max)
12:54:20 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.336072 (min) 0.359803 (max)
12:54:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.027682 (min) -0.0232619 (max)
12:54:20 DEBUG opendrift.models.basemodel.environment:905: x_wind: -0.331689 (min) -0.30619 (max)
12:54:20 DEBUG opendrift.models.basemodel.environment:905: y_wind: 7.11072 (min) 7.12949 (max)
12:54:20 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 7.9697e-07 (min) 1.17257e-06 (max)
12:54:20 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
12:54:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
12:54:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
12:54:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
12:54:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
12:54:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
12:54:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
12:54:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
12:54:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
12:54:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
12:54:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
12:54:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
12:54:20 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
12:54:20 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
12:54:20 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
12:54:20 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
12:54:20 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
12:54:20 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 300.493 (min) 300.81 (max)
12:54:20 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
12:54:20 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
12:54:20 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.246385, mean: 1.250243, max: 1.252767
12:54:20 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
12:54:20 DEBUG opendrift.models.physics_methods:1061: min: 6.082131, mean: 6.091535, max: 6.097682
12:54:20 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 6.082131, mean: 6.091535, max: 6.097682
12:54:20 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
12:54:20 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:54:20 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
12:54:20 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
12:54:20 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.142360 m/s - 0.142724 m/s)
12:54:20 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
12:54:20 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
12:54:20 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
12:54:20 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
12:54:20 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
12:54:20 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:54:20 DEBUG opendrift.models.basemodel:2037: ======================================================================
12:54:20 INFO opendrift.models.basemodel:2038: 2024-11-08 15:00:00 - step 16 of 71 - 1000 active elements (0 deactivated)
12:54:20 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
12:54:20 DEBUG opendrift.models.basemodel:2046: ======================================================================
12:54:20 DEBUG opendrift.models.basemodel:2057: 60.26316290831889 <- latitude -> 60.27456219420222
12:54:20 DEBUG opendrift.models.basemodel:2062: 4.602506803495532 <- longitude -> 4.610845153125155
12:54:20 DEBUG opendrift.models.basemodel:2065: z = 0.0
12:54:20 DEBUG opendrift.models.basemodel:2068: ---------------------------------
12:54:20 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:54:20 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
12:54:20 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:54:20 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
12:54:20 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:54:20 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:54:20 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
12:54:20 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-08 15:00:00 (before)
2024-11-08 16:00:00 (after)
12:54:32 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
12:54:32 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
12:54:32 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
12:54:32 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
12:54:32 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
12:54:32 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
12:54:32 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 24x22x7) for time before (2024-11-08 15:00:00)
12:54:32 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-08 15:00:00) in space (linearNDFast)
12:54:32 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
12:54:32 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
12:54:32 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.39750402377177 and -65.38916567197685 degrees.
12:54:32 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.39750402377177 and -65.38916567197685 degrees.
12:54:32 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:54:32 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:54:32 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
12:54:32 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:54:32 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
12:54:32 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:54:32 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:54:32 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
12:54:32 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
12:54:32 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
12:54:32 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
12:54:32 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:54:32 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
12:54:32 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
12:54:32 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
12:54:32 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
12:54:32 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.0120066 (min) 0.0566686 (max)
12:54:32 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.27634 (min) 0.318978 (max)
12:54:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.0640669 (min) -0.059726 (max)
12:54:32 DEBUG opendrift.models.basemodel.environment:905: x_wind: -1.31621 (min) -1.28057 (max)
12:54:32 DEBUG opendrift.models.basemodel.environment:905: y_wind: 7.38554 (min) 7.46621 (max)
12:54:32 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -2.12308e-05 (min) -2.09597e-05 (max)
12:54:32 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
12:54:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
12:54:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
12:54:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
12:54:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
12:54:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
12:54:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
12:54:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
12:54:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
12:54:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
12:54:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
12:54:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
12:54:32 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
12:54:32 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
12:54:32 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
12:54:32 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
12:54:32 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
12:54:32 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 300.758 (min) 301.893 (max)
12:54:32 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
12:54:32 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
12:54:33 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.382685, mean: 1.395324, max: 1.413654
12:54:33 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
12:54:33 DEBUG opendrift.models.physics_methods:1061: min: 6.406064, mean: 6.435262, max: 6.477405
12:54:33 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 6.406064, mean: 6.435262, max: 6.477405
12:54:33 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
12:54:33 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:54:33 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
12:54:33 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
12:54:33 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.149942 m/s - 0.151612 m/s)
12:54:33 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
12:54:33 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
12:54:33 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
12:54:33 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
12:54:33 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
12:54:33 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:54:33 DEBUG opendrift.models.basemodel:2037: ======================================================================
12:54:33 INFO opendrift.models.basemodel:2038: 2024-11-08 16:00:00 - step 17 of 71 - 1000 active elements (0 deactivated)
12:54:33 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
12:54:33 DEBUG opendrift.models.basemodel:2046: ======================================================================
12:54:33 DEBUG opendrift.models.basemodel:2057: 60.27702968351157 <- latitude -> 60.28961834881399
12:54:33 DEBUG opendrift.models.basemodel:2062: 4.604436715131171 <- longitude -> 4.6099131734216146
12:54:33 DEBUG opendrift.models.basemodel:2065: z = 0.0
12:54:33 DEBUG opendrift.models.basemodel:2068: ---------------------------------
12:54:33 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:54:33 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
12:54:33 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:54:33 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
12:54:33 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:54:33 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:54:33 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
12:54:33 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-08 16:00:00 (before)
2024-11-08 17:00:00 (after)
12:54:45 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
12:54:45 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
12:54:45 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
12:54:45 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
12:54:45 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
12:54:45 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
12:54:45 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 24x22x7) for time before (2024-11-08 16:00:00)
12:54:45 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-08 16:00:00) in space (linearNDFast)
12:54:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
12:54:45 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
12:54:45 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.39557410447813 and -65.3900976504746 degrees.
12:54:45 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.39557410447813 and -65.3900976504746 degrees.
12:54:45 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:54:45 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:54:45 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
12:54:45 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:54:45 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
12:54:45 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:54:45 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:54:45 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
12:54:45 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
12:54:45 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
12:54:45 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
12:54:45 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:54:45 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
12:54:45 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
12:54:45 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
12:54:45 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
12:54:45 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.0264752 (min) 0.0167455 (max)
12:54:45 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.237779 (min) 0.293685 (max)
12:54:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.173279 (min) -0.169248 (max)
12:54:45 DEBUG opendrift.models.basemodel.environment:905: x_wind: -1.36998 (min) -1.29839 (max)
12:54:45 DEBUG opendrift.models.basemodel.environment:905: y_wind: 7.17417 (min) 7.22153 (max)
12:54:45 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -4.03643e-05 (min) -4.01224e-05 (max)
12:54:45 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
12:54:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
12:54:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
12:54:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
12:54:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
12:54:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
12:54:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
12:54:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
12:54:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
12:54:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
12:54:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
12:54:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
12:54:45 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
12:54:45 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
12:54:45 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
12:54:45 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
12:54:45 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
12:54:45 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 301.647 (min) 303.534 (max)
12:54:45 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
12:54:45 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
12:54:45 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.307600, mean: 1.317686, max: 1.329074
12:54:45 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
12:54:45 DEBUG opendrift.models.physics_methods:1061: min: 6.229699, mean: 6.253674, max: 6.280643
12:54:45 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 6.229699, mean: 6.253674, max: 6.280643
12:54:45 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
12:54:45 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:54:45 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
12:54:45 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
12:54:45 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.145814 m/s - 0.147007 m/s)
12:54:45 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
12:54:45 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
12:54:45 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
12:54:45 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
12:54:45 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
12:54:45 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:54:45 DEBUG opendrift.models.basemodel:2037: ======================================================================
12:54:45 INFO opendrift.models.basemodel:2038: 2024-11-08 17:00:00 - step 18 of 71 - 1000 active elements (0 deactivated)
12:54:45 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
12:54:45 DEBUG opendrift.models.basemodel:2046: ======================================================================
12:54:45 DEBUG opendrift.models.basemodel:2057: 60.289513636388946 <- latitude -> 60.30369716132377
12:54:45 DEBUG opendrift.models.basemodel:2062: 4.60351720847058 <- longitude -> 4.606724104124634
12:54:45 DEBUG opendrift.models.basemodel:2065: z = 0.0
12:54:45 DEBUG opendrift.models.basemodel:2068: ---------------------------------
12:54:45 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:54:45 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
12:54:45 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:54:45 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
12:54:45 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:54:45 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:54:45 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
12:54:45 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-08 17:00:00 (before)
2024-11-08 18:00:00 (after)
12:54:56 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
12:54:56 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
12:54:56 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
12:54:56 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
12:54:56 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
12:54:56 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
12:54:56 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-11-08 17:00:00)
12:54:56 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-08 17:00:00) in space (linearNDFast)
12:54:56 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
12:54:56 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
12:54:56 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.39649361136543 and -65.39328671775665 degrees.
12:54:56 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.39649361136543 and -65.39328671775665 degrees.
12:54:56 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:54:56 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:54:56 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
12:54:56 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:54:56 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
12:54:56 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:54:56 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:54:56 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
12:54:56 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
12:54:56 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
12:54:56 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
12:54:56 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:54:56 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
12:54:56 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
12:54:56 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
12:54:56 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
12:54:56 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.0993394 (min) -0.0595677 (max)
12:54:56 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.244761 (min) 0.290044 (max)
12:54:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.336444 (min) -0.332406 (max)
12:54:56 DEBUG opendrift.models.basemodel.environment:905: x_wind: -0.956547 (min) -0.72637 (max)
12:54:56 DEBUG opendrift.models.basemodel.environment:905: y_wind: 7.44826 (min) 7.46925 (max)
12:54:56 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -5.03024e-05 (min) -5.02744e-05 (max)
12:54:56 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
12:54:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
12:54:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
12:54:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
12:54:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
12:54:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
12:54:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
12:54:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
12:54:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
12:54:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
12:54:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
12:54:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
12:54:56 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
12:54:56 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
12:54:56 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
12:54:56 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
12:54:56 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
12:54:56 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 302.767 (min) 304.948 (max)
12:54:56 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
12:54:56 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
12:54:56 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.378454, mean: 1.386067, max: 1.392974
12:54:56 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
12:54:56 DEBUG opendrift.models.physics_methods:1061: min: 6.396254, mean: 6.413891, max: 6.429854
12:54:56 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 6.396254, mean: 6.413891, max: 6.429854
12:54:56 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
12:54:56 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:54:56 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
12:54:56 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
12:54:56 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.149713 m/s - 0.150499 m/s)
12:54:56 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
12:54:56 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
12:54:56 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
12:54:56 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
12:54:56 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
12:54:56 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:54:56 DEBUG opendrift.models.basemodel:2037: ======================================================================
12:54:56 INFO opendrift.models.basemodel:2038: 2024-11-08 18:00:00 - step 19 of 71 - 1000 active elements (0 deactivated)
12:54:56 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
12:54:56 DEBUG opendrift.models.basemodel:2046: ======================================================================
12:54:56 DEBUG opendrift.models.basemodel:2057: 60.30225994403885 <- latitude -> 60.31779803483877
12:54:56 DEBUG opendrift.models.basemodel:2062: 4.597499237377277 <- longitude -> 4.600727809421391
12:54:56 DEBUG opendrift.models.basemodel:2065: z = 0.0
12:54:56 DEBUG opendrift.models.basemodel:2068: ---------------------------------
12:54:56 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:54:56 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
12:54:56 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:54:56 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
12:54:56 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:54:56 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:54:56 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
12:54:56 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-08 18:00:00 (before)
2024-11-08 19:00:00 (after)
12:55:08 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
12:55:08 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
12:55:08 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
12:55:08 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
12:55:08 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
12:55:08 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
12:55:08 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 24x23x7) for time before (2024-11-08 18:00:00)
12:55:08 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-08 18:00:00) in space (linearNDFast)
12:55:08 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
12:55:08 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
12:55:08 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.40251157468188 and -65.39928300877888 degrees.
12:55:08 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.40251157468188 and -65.39928300877888 degrees.
12:55:08 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:55:08 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:55:08 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
12:55:08 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:55:08 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
12:55:08 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:55:08 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:55:08 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
12:55:08 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
12:55:08 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
12:55:08 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
12:55:08 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:55:08 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
12:55:08 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
12:55:08 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
12:55:08 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
12:55:08 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.158106 (min) -0.114636 (max)
12:55:08 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.250424 (min) 0.299072 (max)
12:55:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.511201 (min) -0.508088 (max)
12:55:08 DEBUG opendrift.models.basemodel.environment:905: x_wind: 0.0539844 (min) 0.246463 (max)
12:55:08 DEBUG opendrift.models.basemodel.environment:905: y_wind: 5.44228 (min) 5.68111 (max)
12:55:08 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -4.74459e-05 (min) -4.67597e-05 (max)
12:55:08 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
12:55:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
12:55:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
12:55:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
12:55:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
12:55:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
12:55:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
12:55:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
12:55:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
12:55:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
12:55:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
12:55:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
12:55:08 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
12:55:08 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
12:55:08 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
12:55:08 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
12:55:08 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
12:55:08 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 303.554 (min) 305.032 (max)
12:55:08 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
12:55:08 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
12:55:08 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.728684, mean: 0.760450, max: 0.795461
12:55:08 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
12:55:08 DEBUG opendrift.models.physics_methods:1061: min: 4.650494, mean: 4.750643, max: 4.858911
12:55:08 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 4.650494, mean: 4.750643, max: 4.858911
12:55:08 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
12:55:08 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:55:08 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
12:55:08 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
12:55:08 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.108851 m/s - 0.113729 m/s)
12:55:08 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
12:55:08 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
12:55:08 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
12:55:08 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
12:55:08 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
12:55:08 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:55:08 DEBUG opendrift.models.basemodel:2037: ======================================================================
12:55:08 INFO opendrift.models.basemodel:2038: 2024-11-08 19:00:00 - step 20 of 71 - 1000 active elements (0 deactivated)
12:55:08 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
12:55:08 DEBUG opendrift.models.basemodel:2046: ======================================================================
12:55:08 DEBUG opendrift.models.basemodel:2057: 60.31386806914074 <- latitude -> 60.33104732865978
12:55:08 DEBUG opendrift.models.basemodel:2062: 4.587731616253359 <- longitude -> 4.592995429190483
12:55:08 DEBUG opendrift.models.basemodel:2065: z = 0.0
12:55:08 DEBUG opendrift.models.basemodel:2068: ---------------------------------
12:55:08 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:55:08 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
12:55:08 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:55:08 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
12:55:08 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:55:08 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:55:08 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
12:55:08 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-08 19:00:00 (before)
2024-11-08 20:00:00 (after)
12:55:28 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
12:55:28 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
12:55:28 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
12:55:28 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
12:55:28 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
12:55:28 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
12:55:28 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 24x23x7) for time before (2024-11-08 19:00:00)
12:55:28 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-08 19:00:00) in space (linearNDFast)
12:55:28 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
12:55:28 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
12:55:28 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.41227918411857 and -65.40701537956551 degrees.
12:55:28 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.41227918411857 and -65.40701537956551 degrees.
12:55:28 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:55:28 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:55:28 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
12:55:28 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:55:28 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
12:55:28 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:55:28 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:55:28 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
12:55:28 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
12:55:28 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
12:55:28 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
12:55:28 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:55:28 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
12:55:28 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
12:55:28 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
12:55:28 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
12:55:28 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.191223 (min) -0.151376 (max)
12:55:28 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.307842 (min) 0.368293 (max)
12:55:28 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.658683 (min) -0.657867 (max)
12:55:28 DEBUG opendrift.models.basemodel.environment:905: x_wind: -1.6248 (min) -1.61391 (max)
12:55:28 DEBUG opendrift.models.basemodel.environment:905: y_wind: 6.06872 (min) 6.12339 (max)
12:55:28 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -3.42225e-05 (min) -3.3666e-05 (max)
12:55:28 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
12:55:28 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
12:55:28 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
12:55:28 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
12:55:28 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
12:55:28 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
12:55:28 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
12:55:28 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
12:55:28 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
12:55:28 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
12:55:28 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
12:55:28 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
12:55:28 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
12:55:28 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
12:55:28 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
12:55:28 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
12:55:28 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
12:55:28 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 303.327 (min) 304.027 (max)
12:55:28 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
12:55:28 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
12:55:28 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.970131, mean: 0.976961, max: 0.986771
12:55:28 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
12:55:28 DEBUG opendrift.models.physics_methods:1061: min: 5.365927, mean: 5.384777, max: 5.411750
12:55:28 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 5.365927, mean: 5.384777, max: 5.411750
12:55:28 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
12:55:28 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:55:28 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
12:55:28 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
12:55:28 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.125597 m/s - 0.126669 m/s)
12:55:28 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
12:55:28 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
12:55:28 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
12:55:28 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
12:55:28 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
12:55:28 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:55:28 DEBUG opendrift.models.basemodel:2037: ======================================================================
12:55:28 INFO opendrift.models.basemodel:2038: 2024-11-08 20:00:00 - step 21 of 71 - 1000 active elements (0 deactivated)
12:55:28 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
12:55:28 DEBUG opendrift.models.basemodel:2046: ======================================================================
12:55:28 DEBUG opendrift.models.basemodel:2057: 60.32773707928281 <- latitude -> 60.346873010619404
12:55:28 DEBUG opendrift.models.basemodel:2062: 4.573338675254673 <- longitude -> 4.5808643105199645
12:55:28 DEBUG opendrift.models.basemodel:2065: z = 0.0
12:55:28 DEBUG opendrift.models.basemodel:2068: ---------------------------------
12:55:28 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:55:28 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
12:55:28 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:55:28 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
12:55:28 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:55:28 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:55:28 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
12:55:28 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-08 20:00:00 (before)
2024-11-08 21:00:00 (after)
12:55:44 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
12:55:44 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
12:55:44 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
12:55:44 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
12:55:44 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
12:55:44 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
12:55:44 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 24x24x7) for time before (2024-11-08 20:00:00)
12:55:44 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-08 20:00:00) in space (linearNDFast)
12:55:44 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
12:55:44 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
12:55:44 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.42667212105088 and -65.41914650813791 degrees.
12:55:44 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.42667212105088 and -65.41914650813791 degrees.
12:55:44 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:55:44 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:55:44 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
12:55:44 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:55:44 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
12:55:44 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:55:44 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:55:44 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
12:55:44 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
12:55:44 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
12:55:44 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
12:55:44 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:55:44 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
12:55:44 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
12:55:44 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
12:55:44 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
12:55:44 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.195744 (min) -0.165125 (max)
12:55:44 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.384105 (min) 0.444365 (max)
12:55:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.742693 (min) -0.740907 (max)
12:55:44 DEBUG opendrift.models.basemodel.environment:905: x_wind: -1.81796 (min) -1.66848 (max)
12:55:44 DEBUG opendrift.models.basemodel.environment:905: y_wind: 5.39999 (min) 5.44184 (max)
12:55:44 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -1.03808e-05 (min) -1.02504e-05 (max)
12:55:44 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
12:55:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
12:55:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
12:55:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
12:55:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
12:55:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
12:55:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
12:55:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
12:55:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
12:55:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
12:55:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
12:55:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
12:55:44 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
12:55:44 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
12:55:44 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
12:55:44 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
12:55:44 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
12:55:44 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 301.447 (min) 302.311 (max)
12:55:44 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
12:55:44 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
12:55:44 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.786543, mean: 0.796360, max: 0.808200
12:55:44 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
12:55:44 DEBUG opendrift.models.physics_methods:1061: min: 4.831599, mean: 4.861642, max: 4.897664
12:55:44 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 4.831599, mean: 4.861642, max: 4.897664
12:55:44 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
12:55:44 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:55:44 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
12:55:44 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
12:55:44 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.113090 m/s - 0.114636 m/s)
12:55:44 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
12:55:44 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
12:55:44 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
12:55:44 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
12:55:44 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
12:55:44 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:55:44 DEBUG opendrift.models.basemodel:2037: ======================================================================
12:55:44 INFO opendrift.models.basemodel:2038: 2024-11-08 21:00:00 - step 22 of 71 - 1000 active elements (0 deactivated)
12:55:44 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
12:55:44 DEBUG opendrift.models.basemodel:2046: ======================================================================
12:55:44 DEBUG opendrift.models.basemodel:2057: 60.343645467978156 <- latitude -> 60.364740576346286
12:55:44 DEBUG opendrift.models.basemodel:2062: 4.558258201973062 <- longitude -> 4.56792463784403
12:55:44 DEBUG opendrift.models.basemodel:2065: z = 0.0
12:55:44 DEBUG opendrift.models.basemodel:2068: ---------------------------------
12:55:44 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:55:44 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
12:55:44 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:55:44 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
12:55:44 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:55:44 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:55:44 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
12:55:44 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-08 21:00:00 (before)
2024-11-08 22:00:00 (after)
12:56:00 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
12:56:00 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
12:56:00 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
12:56:00 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
12:56:00 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
12:56:00 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
12:56:00 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 25x24x7) for time before (2024-11-08 21:00:00)
12:56:00 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-08 21:00:00) in space (linearNDFast)
12:56:00 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
12:56:00 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
12:56:00 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.44175260216996 and -65.4320861749166 degrees.
12:56:00 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.44175260216996 and -65.4320861749166 degrees.
12:56:00 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:56:00 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:56:00 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
12:56:00 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:56:00 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
12:56:00 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:56:00 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:56:00 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
12:56:00 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
12:56:00 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
12:56:00 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
12:56:00 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:56:00 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
12:56:00 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
12:56:00 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
12:56:00 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
12:56:00 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.170087 (min) -0.15139 (max)
12:56:00 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.451981 (min) 0.501011 (max)
12:56:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.738005 (min) -0.736901 (max)
12:56:00 DEBUG opendrift.models.basemodel.environment:905: x_wind: -2.01615 (min) -1.89737 (max)
12:56:00 DEBUG opendrift.models.basemodel.environment:905: y_wind: 4.66582 (min) 4.75353 (max)
12:56:00 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 1.28934e-05 (min) 1.31556e-05 (max)
12:56:00 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
12:56:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
12:56:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
12:56:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
12:56:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
12:56:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
12:56:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
12:56:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
12:56:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
12:56:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
12:56:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
12:56:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
12:56:00 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
12:56:00 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
12:56:00 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
12:56:00 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
12:56:00 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
12:56:00 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 300.312 (min) 300.804 (max)
12:56:00 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
12:56:00 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
12:56:00 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.625732, mean: 0.638550, max: 0.655102
12:56:00 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
12:56:00 DEBUG opendrift.models.physics_methods:1061: min: 4.309467, mean: 4.353350, max: 4.409447
12:56:00 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 4.309467, mean: 4.353350, max: 4.409447
12:56:00 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
12:56:00 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:56:00 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
12:56:00 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
12:56:00 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.100869 m/s - 0.103209 m/s)
12:56:00 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
12:56:00 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
12:56:00 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
12:56:00 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
12:56:00 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
12:56:00 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:56:00 DEBUG opendrift.models.basemodel:2037: ======================================================================
12:56:00 INFO opendrift.models.basemodel:2038: 2024-11-08 22:00:00 - step 23 of 71 - 1000 active elements (0 deactivated)
12:56:00 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
12:56:00 DEBUG opendrift.models.basemodel:2046: ======================================================================
12:56:00 DEBUG opendrift.models.basemodel:2057: 60.3612702289567 <- latitude -> 60.38399984524709
12:56:00 DEBUG opendrift.models.basemodel:2062: 4.5445627666524455 <- longitude -> 4.555552359799075
12:56:00 DEBUG opendrift.models.basemodel:2065: z = 0.0
12:56:00 DEBUG opendrift.models.basemodel:2068: ---------------------------------
12:56:00 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:56:00 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
12:56:00 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:56:00 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
12:56:00 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:56:00 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:56:00 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
12:56:00 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-08 22:00:00 (before)
2024-11-08 23:00:00 (after)
12:56:11 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
12:56:11 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
12:56:11 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
12:56:11 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
12:56:11 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
12:56:11 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
12:56:11 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 25x24x7) for time before (2024-11-08 22:00:00)
12:56:11 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-08 22:00:00) in space (linearNDFast)
12:56:11 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
12:56:11 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
12:56:11 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.45544802497683 and -65.44445844115101 degrees.
12:56:11 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.45544802497683 and -65.44445844115101 degrees.
12:56:11 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:56:11 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:56:11 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
12:56:11 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:56:11 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
12:56:11 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:56:11 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:56:11 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
12:56:11 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
12:56:11 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
12:56:11 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
12:56:11 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:56:11 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
12:56:11 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
12:56:11 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
12:56:11 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
12:56:11 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.120819 (min) -0.106377 (max)
12:56:11 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.489934 (min) 0.539552 (max)
12:56:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.650238 (min) -0.648661 (max)
12:56:11 DEBUG opendrift.models.basemodel.environment:905: x_wind: -3.06983 (min) -3.03859 (max)
12:56:11 DEBUG opendrift.models.basemodel.environment:905: y_wind: 4.63115 (min) 4.66013 (max)
12:56:11 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 3.51239e-05 (min) 3.55337e-05 (max)
12:56:11 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
12:56:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
12:56:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
12:56:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
12:56:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
12:56:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
12:56:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
12:56:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
12:56:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
12:56:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
12:56:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
12:56:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
12:56:11 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
12:56:11 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
12:56:11 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
12:56:11 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
12:56:11 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
12:56:11 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 300.003 (min) 300.876 (max)
12:56:11 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
12:56:11 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
12:56:11 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.756459, mean: 0.760367, max: 0.764345
12:56:11 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
12:56:11 DEBUG opendrift.models.physics_methods:1061: min: 4.738298, mean: 4.750517, max: 4.762932
12:56:11 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 4.738298, mean: 4.750517, max: 4.762932
12:56:11 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
12:56:11 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:56:11 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
12:56:11 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
12:56:11 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.110906 m/s - 0.111483 m/s)
12:56:11 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
12:56:11 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
12:56:11 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
12:56:11 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
12:56:11 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
12:56:11 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:56:11 DEBUG opendrift.models.basemodel:2037: ======================================================================
12:56:11 INFO opendrift.models.basemodel:2038: 2024-11-08 23:00:00 - step 24 of 71 - 1000 active elements (0 deactivated)
12:56:11 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
12:56:11 DEBUG opendrift.models.basemodel:2046: ======================================================================
12:56:11 DEBUG opendrift.models.basemodel:2057: 60.38011432579155 <- latitude -> 60.404438271775305
12:56:11 DEBUG opendrift.models.basemodel:2062: 4.533376169373546 <- longitude -> 4.54399786767642
12:56:11 DEBUG opendrift.models.basemodel:2065: z = 0.0
12:56:11 DEBUG opendrift.models.basemodel:2068: ---------------------------------
12:56:11 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:56:11 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
12:56:11 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:56:11 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
12:56:11 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:56:11 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:56:11 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
12:56:11 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-08 23:00:00 (before)
2024-11-09 00:00:00 (after)
12:56:23 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
12:56:23 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
12:56:23 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
12:56:23 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
12:56:23 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
12:56:23 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
12:56:23 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 25x24x7) for time before (2024-11-08 23:00:00)
12:56:23 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-08 23:00:00) in space (linearNDFast)
12:56:23 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
12:56:23 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
12:56:23 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.46663462264841 and -65.45601292644099 degrees.
12:56:23 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.46663462264841 and -65.45601292644099 degrees.
12:56:23 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:56:23 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:56:23 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
12:56:23 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:56:23 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
12:56:23 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:56:23 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:56:23 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
12:56:23 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
12:56:23 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
12:56:23 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
12:56:23 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:56:23 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
12:56:23 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
12:56:23 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
12:56:23 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
12:56:23 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.0663884 (min) -0.0486802 (max)
12:56:23 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.501385 (min) 0.56234 (max)
12:56:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.503572 (min) -0.501524 (max)
12:56:23 DEBUG opendrift.models.basemodel.environment:905: x_wind: -3.97745 (min) -3.59729 (max)
12:56:23 DEBUG opendrift.models.basemodel.environment:905: y_wind: 5.25221 (min) 5.65507 (max)
12:56:23 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 4.54168e-05 (min) 4.55e-05 (max)
12:56:23 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
12:56:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
12:56:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
12:56:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
12:56:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
12:56:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
12:56:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
12:56:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
12:56:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
12:56:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
12:56:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
12:56:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
12:56:23 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
12:56:23 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
12:56:23 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
12:56:23 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
12:56:23 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
12:56:23 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 300.405 (min) 302.101 (max)
12:56:23 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
12:56:23 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
12:56:23 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.996944, mean: 1.101405, max: 1.175485
12:56:23 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
12:56:23 DEBUG opendrift.models.physics_methods:1061: min: 5.439576, mean: 5.716862, max: 5.906606
12:56:23 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 5.439576, mean: 5.716862, max: 5.906606
12:56:23 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
12:56:23 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:56:23 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
12:56:23 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
12:56:23 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.127320 m/s - 0.138252 m/s)
12:56:23 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
12:56:23 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
12:56:23 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
12:56:23 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
12:56:23 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
12:56:23 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:56:23 DEBUG opendrift.models.basemodel:2037: ======================================================================
12:56:23 INFO opendrift.models.basemodel:2038: 2024-11-09 00:00:00 - step 25 of 71 - 1000 active elements (0 deactivated)
12:56:23 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
12:56:23 DEBUG opendrift.models.basemodel:2046: ======================================================================
12:56:23 DEBUG opendrift.models.basemodel:2057: 60.39999999175152 <- latitude -> 60.426001558488466
12:56:23 DEBUG opendrift.models.basemodel:2062: 4.524637875182805 <- longitude -> 4.534880870677494
12:56:23 DEBUG opendrift.models.basemodel:2065: z = 0.0
12:56:23 DEBUG opendrift.models.basemodel:2068: ---------------------------------
12:56:23 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:56:23 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
12:56:23 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:56:23 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
12:56:23 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:56:23 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:56:23 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
12:56:23 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-09 00:00:00 (before)
2024-11-09 01:00:00 (after)
12:56:35 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
12:56:35 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
12:56:35 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
12:56:35 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
12:56:35 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
12:56:35 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
12:56:35 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 25x24x7) for time before (2024-11-09 00:00:00)
12:56:35 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-09 00:00:00) in space (linearNDFast)
12:56:35 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
12:56:35 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
12:56:35 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.47537290913665 and -65.4651299176604 degrees.
12:56:35 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.47537290913665 and -65.4651299176604 degrees.
12:56:35 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:56:35 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:56:35 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
12:56:35 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:56:35 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
12:56:35 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:56:35 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:56:35 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
12:56:35 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
12:56:35 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
12:56:35 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
12:56:35 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:56:35 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
12:56:35 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
12:56:35 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
12:56:35 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
12:56:35 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.0490219 (min) -0.0209792 (max)
12:56:35 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.481493 (min) 0.560256 (max)
12:56:35 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.342902 (min) -0.34051 (max)
12:56:35 DEBUG opendrift.models.basemodel.environment:905: x_wind: -4.04381 (min) -3.99958 (max)
12:56:35 DEBUG opendrift.models.basemodel.environment:905: y_wind: 4.0533 (min) 4.14959 (max)
12:56:35 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 6.66376e-07 (min) 7.28628e-07 (max)
12:56:35 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
12:56:35 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
12:56:35 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
12:56:35 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
12:56:35 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
12:56:35 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
12:56:35 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
12:56:35 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
12:56:35 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
12:56:35 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
12:56:35 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
12:56:35 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
12:56:35 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
12:56:35 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
12:56:35 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
12:56:35 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
12:56:35 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
12:56:35 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 301.583 (min) 303.546 (max)
12:56:35 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
12:56:35 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
12:56:35 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.800891, mean: 0.815149, max: 0.820732
12:56:35 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
12:56:35 DEBUG opendrift.models.physics_methods:1061: min: 4.875468, mean: 4.918660, max: 4.935489
12:56:35 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 4.875468, mean: 4.918660, max: 4.935489
12:56:35 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
12:56:35 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:56:35 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
12:56:35 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
12:56:35 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.114117 m/s - 0.115522 m/s)
12:56:35 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
12:56:35 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
12:56:35 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
12:56:35 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
12:56:35 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
12:56:35 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:56:35 DEBUG opendrift.models.basemodel:2037: ======================================================================
12:56:35 INFO opendrift.models.basemodel:2038: 2024-11-09 01:00:00 - step 26 of 71 - 1000 active elements (0 deactivated)
12:56:35 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
12:56:35 DEBUG opendrift.models.basemodel:2046: ======================================================================
12:56:35 DEBUG opendrift.models.basemodel:2057: 60.418238173406905 <- latitude -> 60.44672401805921
12:56:35 DEBUG opendrift.models.basemodel:2062: 4.516247018208514 <- longitude -> 4.52806203181835
12:56:35 DEBUG opendrift.models.basemodel:2065: z = 0.0
12:56:35 DEBUG opendrift.models.basemodel:2068: ---------------------------------
12:56:35 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:56:35 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
12:56:35 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:56:35 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
12:56:35 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:56:35 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:56:35 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
12:56:35 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-09 01:00:00 (before)
2024-11-09 02:00:00 (after)
12:56:47 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
12:56:47 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
12:56:47 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
12:56:47 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
12:56:47 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
12:56:47 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
12:56:47 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 25x24x7) for time before (2024-11-09 01:00:00)
12:56:47 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-09 01:00:00) in space (linearNDFast)
12:56:47 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
12:56:47 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
12:56:47 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.48376375744246 and -65.47194875042166 degrees.
12:56:47 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.48376375744246 and -65.47194875042166 degrees.
12:56:47 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:56:47 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:56:47 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
12:56:47 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:56:47 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
12:56:47 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:56:47 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:56:47 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
12:56:47 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
12:56:47 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
12:56:47 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
12:56:47 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:56:47 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
12:56:47 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
12:56:47 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
12:56:47 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
12:56:47 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.0217015 (min) -0.0139634 (max)
12:56:47 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.437744 (min) 0.509269 (max)
12:56:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.201786 (min) -0.197529 (max)
12:56:47 DEBUG opendrift.models.basemodel.environment:905: x_wind: -3.62735 (min) -3.32062 (max)
12:56:47 DEBUG opendrift.models.basemodel.environment:905: y_wind: 4.20376 (min) 4.40683 (max)
12:56:47 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 3.32706e-05 (min) 3.42841e-05 (max)
12:56:47 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
12:56:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
12:56:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
12:56:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
12:56:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
12:56:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
12:56:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
12:56:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
12:56:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
12:56:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
12:56:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
12:56:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
12:56:47 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
12:56:47 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
12:56:47 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
12:56:47 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
12:56:47 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
12:56:47 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 302.931 (min) 305 (max)
12:56:47 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
12:56:47 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
12:56:47 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.748797, mean: 0.751914, max: 0.758399
12:56:47 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
12:56:47 DEBUG opendrift.models.physics_methods:1061: min: 4.714239, mean: 4.724038, max: 4.744368
12:56:47 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 4.714239, mean: 4.724038, max: 4.744368
12:56:47 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
12:56:47 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:56:47 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
12:56:47 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
12:56:47 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.110343 m/s - 0.111048 m/s)
12:56:47 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
12:56:47 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
12:56:47 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
12:56:47 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
12:56:47 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
12:56:47 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:56:47 DEBUG opendrift.models.basemodel:2037: ======================================================================
12:56:47 INFO opendrift.models.basemodel:2038: 2024-11-09 02:00:00 - step 27 of 71 - 1000 active elements (0 deactivated)
12:56:47 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
12:56:47 DEBUG opendrift.models.basemodel:2046: ======================================================================
12:56:47 DEBUG opendrift.models.basemodel:2057: 60.43509823831183 <- latitude -> 60.46601388564579
12:56:47 DEBUG opendrift.models.basemodel:2062: 4.51098741707206 <- longitude -> 4.522167929814726
12:56:47 DEBUG opendrift.models.basemodel:2065: z = 0.0
12:56:47 DEBUG opendrift.models.basemodel:2068: ---------------------------------
12:56:47 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:56:47 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
12:56:47 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:56:47 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
12:56:47 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:56:47 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:56:47 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
12:56:47 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-09 02:00:00 (before)
2024-11-09 03:00:00 (after)
12:56:58 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
12:56:58 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
12:56:58 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
12:56:58 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
12:56:58 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
12:56:58 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
12:56:58 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 25x24x7) for time before (2024-11-09 02:00:00)
12:56:58 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-09 02:00:00) in space (linearNDFast)
12:56:58 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
12:56:58 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
12:56:58 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.48902335391337 and -65.47784283916737 degrees.
12:56:58 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.48902335391337 and -65.47784283916737 degrees.
12:56:58 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:56:58 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:56:58 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
12:56:58 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:56:58 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
12:56:58 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:56:58 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:56:58 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
12:56:58 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
12:56:58 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
12:56:58 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
12:56:58 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:56:58 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
12:56:58 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
12:56:58 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
12:56:58 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
12:56:58 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.00166918 (min) 0.0115814 (max)
12:56:58 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.375073 (min) 0.445272 (max)
12:56:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.111556 (min) -0.104712 (max)
12:56:58 DEBUG opendrift.models.basemodel.environment:905: x_wind: -3.52554 (min) -3.1628 (max)
12:56:58 DEBUG opendrift.models.basemodel.environment:905: y_wind: 4.95409 (min) 4.97795 (max)
12:56:58 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 1.07665e-05 (min) 3.04539e-05 (max)
12:56:58 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
12:56:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
12:56:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
12:56:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
12:56:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
12:56:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
12:56:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
12:56:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
12:56:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
12:56:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
12:56:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
12:56:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
12:56:58 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
12:56:58 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
12:56:58 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
12:56:58 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
12:56:58 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
12:56:58 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 304.153 (min) 307.484 (max)
12:56:58 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
12:56:58 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
12:56:59 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.849838, mean: 0.885944, max: 0.912110
12:56:59 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
12:56:59 DEBUG opendrift.models.physics_methods:1061: min: 5.022243, mean: 5.127727, max: 5.202992
12:56:59 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 5.022243, mean: 5.127727, max: 5.202992
12:56:59 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
12:56:59 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:56:59 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
12:56:59 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
12:56:59 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.117552 m/s - 0.121783 m/s)
12:56:59 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
12:56:59 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
12:56:59 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
12:56:59 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
12:56:59 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
12:56:59 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:56:59 DEBUG opendrift.models.basemodel:2037: ======================================================================
12:56:59 INFO opendrift.models.basemodel:2038: 2024-11-09 03:00:00 - step 28 of 71 - 1000 active elements (0 deactivated)
12:56:59 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
12:56:59 DEBUG opendrift.models.basemodel:2046: ======================================================================
12:56:59 DEBUG opendrift.models.basemodel:2057: 60.45042505701238 <- latitude -> 60.48360194242349
12:56:59 DEBUG opendrift.models.basemodel:2062: 4.507603998238268 <- longitude -> 4.517495767266763
12:56:59 DEBUG opendrift.models.basemodel:2065: z = 0.0
12:56:59 DEBUG opendrift.models.basemodel:2068: ---------------------------------
12:56:59 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:56:59 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
12:56:59 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:56:59 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
12:56:59 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:56:59 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:56:59 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
12:56:59 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-09 03:00:00 (before)
2024-11-09 04:00:00 (after)
12:57:10 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
12:57:10 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
12:57:10 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
12:57:10 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
12:57:10 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
12:57:10 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
12:57:10 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 26x25x7) for time before (2024-11-09 03:00:00)
12:57:10 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-09 03:00:00) in space (linearNDFast)
12:57:10 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
12:57:10 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
12:57:10 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.4924067645818 and -65.4825150082068 degrees.
12:57:10 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.4924067645818 and -65.4825150082068 degrees.
12:57:10 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:57:10 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:57:10 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
12:57:10 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:57:10 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
12:57:10 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:57:10 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:57:10 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
12:57:10 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
12:57:10 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
12:57:10 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
12:57:10 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:57:10 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
12:57:10 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
12:57:10 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
12:57:10 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
12:57:10 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.011168 (min) 0.00552539 (max)
12:57:10 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.297487 (min) 0.392854 (max)
12:57:10 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.0784733 (min) -0.0735114 (max)
12:57:10 DEBUG opendrift.models.basemodel.environment:905: x_wind: -3.21963 (min) -3.05448 (max)
12:57:10 DEBUG opendrift.models.basemodel.environment:905: y_wind: 4.70899 (min) 4.99047 (max)
12:57:10 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -8.02048e-06 (min) 2.12196e-06 (max)
12:57:10 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
12:57:10 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
12:57:10 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
12:57:10 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
12:57:10 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
12:57:10 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
12:57:10 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
12:57:10 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
12:57:10 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
12:57:10 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
12:57:10 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
12:57:10 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
12:57:10 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
12:57:10 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
12:57:10 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
12:57:10 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
12:57:10 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
12:57:10 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 305.563 (min) 310.708 (max)
12:57:10 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
12:57:10 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
12:57:10 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.800500, mean: 0.820709, max: 0.842171
12:57:10 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
12:57:10 DEBUG opendrift.models.physics_methods:1061: min: 4.874279, mean: 4.935365, max: 4.999536
12:57:10 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 4.874279, mean: 4.935365, max: 4.999536
12:57:10 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
12:57:10 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:57:10 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
12:57:10 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
12:57:10 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.114089 m/s - 0.117021 m/s)
12:57:10 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
12:57:10 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
12:57:10 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
12:57:10 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
12:57:10 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
12:57:10 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:57:10 DEBUG opendrift.models.basemodel:2037: ======================================================================
12:57:10 INFO opendrift.models.basemodel:2038: 2024-11-09 04:00:00 - step 29 of 71 - 1000 active elements (0 deactivated)
12:57:10 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
12:57:10 DEBUG opendrift.models.basemodel:2046: ======================================================================
12:57:10 DEBUG opendrift.models.basemodel:2057: 60.463079824198104 <- latitude -> 60.499503674077516
12:57:10 DEBUG opendrift.models.basemodel:2062: 4.503887407149753 <- longitude -> 4.512714529753228
12:57:10 DEBUG opendrift.models.basemodel:2065: z = 0.0
12:57:10 DEBUG opendrift.models.basemodel:2068: ---------------------------------
12:57:10 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:57:10 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
12:57:10 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:57:10 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
12:57:10 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:57:10 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:57:10 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
12:57:10 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-09 04:00:00 (before)
2024-11-09 05:00:00 (after)
12:57:22 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
12:57:22 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
12:57:22 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
12:57:22 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
12:57:22 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
12:57:22 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
12:57:22 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 26x25x7) for time before (2024-11-09 04:00:00)
12:57:22 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-09 04:00:00) in space (linearNDFast)
12:57:22 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
12:57:22 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
12:57:22 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.4961233508204 and -65.48729623331545 degrees.
12:57:22 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.4961233508204 and -65.48729623331545 degrees.
12:57:22 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:57:22 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:57:22 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
12:57:22 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:57:22 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
12:57:22 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:57:22 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:57:22 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
12:57:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
12:57:22 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
12:57:22 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
12:57:22 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:57:22 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
12:57:22 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
12:57:22 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
12:57:22 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
12:57:22 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.0297114 (min) 0.0157877 (max)
12:57:22 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.250739 (min) 0.337061 (max)
12:57:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.12639 (min) -0.120174 (max)
12:57:22 DEBUG opendrift.models.basemodel.environment:905: x_wind: -3.25973 (min) -2.87955 (max)
12:57:22 DEBUG opendrift.models.basemodel.environment:905: y_wind: 3.83987 (min) 4.16673 (max)
12:57:22 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -4.58e-06 (min) -2.7487e-06 (max)
12:57:22 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
12:57:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
12:57:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
12:57:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
12:57:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
12:57:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
12:57:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
12:57:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
12:57:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
12:57:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
12:57:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
12:57:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
12:57:22 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
12:57:22 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
12:57:22 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
12:57:22 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
12:57:22 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
12:57:22 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 307.129 (min) 313.53 (max)
12:57:22 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
12:57:22 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
12:57:22 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.622373, mean: 0.623998, max: 0.631075
12:57:22 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
12:57:22 DEBUG opendrift.models.physics_methods:1061: min: 4.297888, mean: 4.303490, max: 4.327828
12:57:22 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 4.297888, mean: 4.303490, max: 4.327828
12:57:22 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
12:57:22 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:57:22 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
12:57:22 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
12:57:22 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.100598 m/s - 0.101298 m/s)
12:57:22 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
12:57:22 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
12:57:22 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
12:57:22 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
12:57:22 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
12:57:22 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:57:22 DEBUG opendrift.models.basemodel:2037: ======================================================================
12:57:22 INFO opendrift.models.basemodel:2038: 2024-11-09 05:00:00 - step 30 of 71 - 1000 active elements (0 deactivated)
12:57:22 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
12:57:22 DEBUG opendrift.models.basemodel:2046: ======================================================================
12:57:22 DEBUG opendrift.models.basemodel:2057: 60.47366247695558 <- latitude -> 60.513067683925286
12:57:22 DEBUG opendrift.models.basemodel:2062: 4.5010023682149685 <- longitude -> 4.506509576598823
12:57:22 DEBUG opendrift.models.basemodel:2065: z = 0.0
12:57:22 DEBUG opendrift.models.basemodel:2068: ---------------------------------
12:57:22 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:57:22 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
12:57:22 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:57:22 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
12:57:22 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:57:22 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:57:22 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
12:57:22 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-09 05:00:00 (before)
2024-11-09 06:00:00 (after)
12:57:37 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
12:57:37 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
12:57:37 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
12:57:37 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
12:57:37 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
12:57:37 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
12:57:37 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 27x25x7) for time before (2024-11-09 05:00:00)
12:57:37 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-09 05:00:00) in space (linearNDFast)
12:57:37 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
12:57:37 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
12:57:37 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.49900838050867 and -65.49350119124773 degrees.
12:57:37 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.49900838050867 and -65.49350119124773 degrees.
12:57:37 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:57:37 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:57:37 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
12:57:37 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:57:37 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
12:57:37 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:57:37 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:57:37 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
12:57:37 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
12:57:37 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
12:57:37 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
12:57:37 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:57:37 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
12:57:37 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
12:57:37 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
12:57:37 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
12:57:37 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.0151992 (min) 0.0143432 (max)
12:57:37 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.210353 (min) 0.309583 (max)
12:57:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.227497 (min) -0.219372 (max)
12:57:37 DEBUG opendrift.models.basemodel.environment:905: x_wind: -2.39344 (min) -2.14841 (max)
12:57:37 DEBUG opendrift.models.basemodel.environment:905: y_wind: 5.11706 (min) 5.18123 (max)
12:57:37 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -3.09883e-05 (min) -2.54994e-05 (max)
12:57:37 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
12:57:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
12:57:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
12:57:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
12:57:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
12:57:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
12:57:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
12:57:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
12:57:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
12:57:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
12:57:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
12:57:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
12:57:37 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
12:57:37 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
12:57:37 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
12:57:37 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
12:57:37 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
12:57:37 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 308.127 (min) 316.135 (max)
12:57:37 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
12:57:37 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
12:57:37 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.757679, mean: 0.787007, max: 0.793734
12:57:37 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
12:57:37 DEBUG opendrift.models.physics_methods:1061: min: 4.742117, mean: 4.832996, max: 4.853634
12:57:37 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 4.742117, mean: 4.832996, max: 4.853634
12:57:37 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
12:57:37 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:57:37 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
12:57:37 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
12:57:37 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.110995 m/s - 0.113606 m/s)
12:57:37 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
12:57:37 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
12:57:37 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
12:57:37 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
12:57:37 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
12:57:37 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:57:37 DEBUG opendrift.models.basemodel:2037: ======================================================================
12:57:37 INFO opendrift.models.basemodel:2038: 2024-11-09 06:00:00 - step 31 of 71 - 1000 active elements (0 deactivated)
12:57:37 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
12:57:37 DEBUG opendrift.models.basemodel:2046: ======================================================================
12:57:37 DEBUG opendrift.models.basemodel:2057: 60.48378781736836 <- latitude -> 60.5263745049247
12:57:37 DEBUG opendrift.models.basemodel:2062: 4.498410912481964 <- longitude -> 4.502385224154799
12:57:37 DEBUG opendrift.models.basemodel:2065: z = 0.0
12:57:37 DEBUG opendrift.models.basemodel:2068: ---------------------------------
12:57:37 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:57:37 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
12:57:37 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:57:37 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
12:57:37 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:57:37 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:57:37 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
12:57:37 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-09 06:00:00 (before)
2024-11-09 07:00:00 (after)
12:57:56 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
12:57:56 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
12:57:56 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
12:57:56 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
12:57:56 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
12:57:56 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
12:57:56 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 28x25x7) for time before (2024-11-09 06:00:00)
12:57:56 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-09 06:00:00) in space (linearNDFast)
12:57:56 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
12:57:56 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
12:57:56 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.50159983839217 and -65.49762554029503 degrees.
12:57:56 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.50159983839217 and -65.49762554029503 degrees.
12:57:56 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:57:56 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:57:56 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
12:57:56 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:57:56 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
12:57:56 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:57:56 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:57:56 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
12:57:56 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
12:57:56 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
12:57:56 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
12:57:56 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:57:56 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
12:57:56 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
12:57:56 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
12:57:56 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
12:57:56 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.0741537 (min) -0.00125213 (max)
12:57:56 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.176064 (min) 0.322473 (max)
12:57:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.359506 (min) -0.353643 (max)
12:57:56 DEBUG opendrift.models.basemodel.environment:905: x_wind: -1.47098 (min) -1.28013 (max)
12:57:56 DEBUG opendrift.models.basemodel.environment:905: y_wind: 5.13986 (min) 5.30437 (max)
12:57:56 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -3.04559e-05 (min) -2.90903e-05 (max)
12:57:56 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
12:57:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
12:57:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
12:57:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
12:57:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
12:57:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
12:57:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
12:57:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
12:57:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
12:57:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
12:57:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
12:57:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
12:57:56 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
12:57:56 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
12:57:56 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
12:57:56 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
12:57:56 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
12:57:56 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 309.431 (min) 319.204 (max)
12:57:56 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
12:57:56 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
12:57:56 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.703115, mean: 0.719386, max: 0.732494
12:57:56 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
12:57:56 DEBUG opendrift.models.physics_methods:1061: min: 4.568176, mean: 4.620695, max: 4.662637
12:57:56 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 4.568176, mean: 4.620695, max: 4.662637
12:57:56 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
12:57:56 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:57:56 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
12:57:56 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
12:57:56 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.106924 m/s - 0.109135 m/s)
12:57:56 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
12:57:56 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
12:57:56 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
12:57:56 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
12:57:56 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
12:57:56 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:57:56 DEBUG opendrift.models.basemodel:2037: ======================================================================
12:57:56 INFO opendrift.models.basemodel:2038: 2024-11-09 07:00:00 - step 32 of 71 - 1000 active elements (0 deactivated)
12:57:56 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
12:57:56 DEBUG opendrift.models.basemodel:2046: ======================================================================
12:57:56 DEBUG opendrift.models.basemodel:2057: 60.49279781268871 <- latitude -> 60.54020549739383
12:57:56 DEBUG opendrift.models.basemodel:2062: 4.49188772657619 <- longitude -> 4.499895410383076
12:57:56 DEBUG opendrift.models.basemodel:2065: z = 0.0
12:57:56 DEBUG opendrift.models.basemodel:2068: ---------------------------------
12:57:56 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:57:56 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
12:57:56 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:57:56 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
12:57:56 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:57:56 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:57:56 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
12:57:56 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-09 07:00:00 (before)
2024-11-09 08:00:00 (after)
12:58:13 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
12:58:13 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
12:58:13 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
12:58:13 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
12:58:13 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
12:58:13 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
12:58:13 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 28x25x7) for time before (2024-11-09 07:00:00)
12:58:13 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-09 07:00:00) in space (linearNDFast)
12:58:13 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
12:58:13 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
12:58:13 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.50812302667251 and -65.5001153521398 degrees.
12:58:13 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.50812302667251 and -65.5001153521398 degrees.
12:58:13 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:58:13 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:58:13 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
12:58:13 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:58:13 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
12:58:13 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:58:13 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:58:13 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
12:58:13 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
12:58:13 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
12:58:13 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
12:58:13 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:58:13 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
12:58:13 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
12:58:13 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
12:58:13 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
12:58:13 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.0808186 (min) -0.0581615 (max)
12:58:13 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.236492 (min) 0.383534 (max)
12:58:13 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.508348 (min) -0.506036 (max)
12:58:13 DEBUG opendrift.models.basemodel.environment:905: x_wind: -0.902663 (min) -0.767615 (max)
12:58:13 DEBUG opendrift.models.basemodel.environment:905: y_wind: 3.44814 (min) 3.74437 (max)
12:58:13 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -2.95832e-05 (min) -2.83172e-05 (max)
12:58:13 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
12:58:13 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
12:58:13 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
12:58:13 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
12:58:13 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
12:58:13 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
12:58:13 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
12:58:13 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
12:58:13 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
12:58:13 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
12:58:13 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
12:58:13 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
12:58:13 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
12:58:13 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
12:58:13 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
12:58:13 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
12:58:13 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
12:58:13 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 310.821 (min) 321.782 (max)
12:58:13 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
12:58:13 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
12:58:13 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.306981, mean: 0.335576, max: 0.363965
12:58:13 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
12:58:13 DEBUG opendrift.models.physics_methods:1061: min: 3.018461, mean: 3.155589, max: 3.286695
12:58:13 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 3.018461, mean: 3.155589, max: 3.286695
12:58:13 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
12:58:13 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:58:13 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
12:58:13 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
12:58:13 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.070651 m/s - 0.076929 m/s)
12:58:13 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
12:58:13 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
12:58:13 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
12:58:13 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
12:58:13 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
12:58:13 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:58:13 DEBUG opendrift.models.basemodel:2037: ======================================================================
12:58:13 INFO opendrift.models.basemodel:2038: 2024-11-09 08:00:00 - step 33 of 71 - 1000 active elements (0 deactivated)
12:58:13 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
12:58:13 DEBUG opendrift.models.basemodel:2046: ======================================================================
12:58:13 DEBUG opendrift.models.basemodel:2057: 60.50266697810022 <- latitude -> 60.55501264815709
12:58:13 DEBUG opendrift.models.basemodel:2062: 4.485476460978617 <- longitude -> 4.4949555854503584
12:58:13 DEBUG opendrift.models.basemodel:2065: z = 0.0
12:58:13 DEBUG opendrift.models.basemodel:2068: ---------------------------------
12:58:13 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:58:13 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
12:58:13 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:58:13 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
12:58:13 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:58:13 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:58:13 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
12:58:13 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-09 08:00:00 (before)
2024-11-09 09:00:00 (after)
12:58:32 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
12:58:32 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
12:58:32 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
12:58:32 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
12:58:32 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
12:58:32 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
12:58:32 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 29x25x7) for time before (2024-11-09 08:00:00)
12:58:32 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-09 08:00:00) in space (linearNDFast)
12:58:32 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
12:58:32 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
12:58:32 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.51453428204451 and -65.5050551664625 degrees.
12:58:32 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.51453428204451 and -65.5050551664625 degrees.
12:58:32 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:58:32 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:58:32 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
12:58:32 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:58:32 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
12:58:32 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:58:32 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:58:32 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
12:58:32 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
12:58:32 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
12:58:32 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
12:58:32 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:58:32 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
12:58:32 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
12:58:32 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
12:58:32 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
12:58:32 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.0846978 (min) -0.0260351 (max)
12:58:32 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.280913 (min) 0.46646 (max)
12:58:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.61966 (min) -0.617237 (max)
12:58:32 DEBUG opendrift.models.basemodel.environment:905: x_wind: -1.57599 (min) -1.39536 (max)
12:58:32 DEBUG opendrift.models.basemodel.environment:905: y_wind: 3.54645 (min) 3.69295 (max)
12:58:32 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -1.47553e-05 (min) -1.37192e-05 (max)
12:58:32 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
12:58:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
12:58:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
12:58:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
12:58:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
12:58:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
12:58:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
12:58:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
12:58:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
12:58:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
12:58:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
12:58:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
12:58:32 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
12:58:32 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
12:58:32 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
12:58:32 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
12:58:32 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
12:58:32 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 311.799 (min) 324.918 (max)
12:58:32 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
12:58:32 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
12:58:32 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.357299, mean: 0.366716, max: 0.396592
12:58:32 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
12:58:32 DEBUG opendrift.models.physics_methods:1061: min: 3.256458, mean: 3.298977, max: 3.430847
12:58:32 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 3.256458, mean: 3.298977, max: 3.430847
12:58:32 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
12:58:32 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:58:32 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
12:58:32 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
12:58:32 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.076222 m/s - 0.080303 m/s)
12:58:32 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
12:58:32 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
12:58:32 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
12:58:32 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
12:58:32 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
12:58:32 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:58:32 DEBUG opendrift.models.basemodel:2037: ======================================================================
12:58:32 INFO opendrift.models.basemodel:2038: 2024-11-09 09:00:00 - step 34 of 71 - 1000 active elements (0 deactivated)
12:58:32 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
12:58:32 DEBUG opendrift.models.basemodel:2046: ======================================================================
12:58:32 DEBUG opendrift.models.basemodel:2057: 60.51412961238536 <- latitude -> 60.57238395280327
12:58:32 DEBUG opendrift.models.basemodel:2062: 4.478053906241518 <- longitude -> 4.490713388981733
12:58:32 DEBUG opendrift.models.basemodel:2065: z = 0.0
12:58:32 DEBUG opendrift.models.basemodel:2068: ---------------------------------
12:58:32 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:58:32 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
12:58:32 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:58:32 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
12:58:32 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:58:32 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:58:32 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
12:58:32 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-09 09:00:00 (before)
2024-11-09 10:00:00 (after)
12:58:51 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
12:58:51 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
12:58:51 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
12:58:51 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
12:58:51 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
12:58:51 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
12:58:51 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 29x27x7) for time before (2024-11-09 09:00:00)
12:58:51 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-09 09:00:00) in space (linearNDFast)
12:58:51 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
12:58:51 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
12:58:51 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.52195682947153 and -65.50929736874974 degrees.
12:58:51 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.52195682947153 and -65.50929736874974 degrees.
12:58:51 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:58:51 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:58:51 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
12:58:51 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:58:51 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
12:58:51 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:58:51 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:58:51 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
12:58:51 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
12:58:51 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
12:58:51 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
12:58:51 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:58:51 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
12:58:51 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
12:58:51 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
12:58:51 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
12:58:51 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.132657 (min) -0.0225157 (max)
12:58:51 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.325326 (min) 0.57433 (max)
12:58:51 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.646758 (min) -0.639538 (max)
12:58:51 DEBUG opendrift.models.basemodel.environment:905: x_wind: -2.23204 (min) -2.15758 (max)
12:58:51 DEBUG opendrift.models.basemodel.environment:905: y_wind: 4.76411 (min) 4.84587 (max)
12:58:51 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 1.0179e-05 (min) 1.24978e-05 (max)
12:58:51 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
12:58:51 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
12:58:51 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
12:58:51 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
12:58:51 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
12:58:51 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
12:58:51 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
12:58:51 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
12:58:51 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
12:58:51 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
12:58:51 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
12:58:51 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
12:58:51 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
12:58:51 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
12:58:51 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
12:58:51 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
12:58:51 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
12:58:51 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 313.548 (min) 328.662 (max)
12:58:51 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
12:58:51 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
12:58:51 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.680846, mean: 0.692499, max: 0.695915
12:58:51 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
12:58:51 DEBUG opendrift.models.physics_methods:1061: min: 4.495251, mean: 4.533545, max: 4.544726
12:58:51 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 4.495251, mean: 4.533545, max: 4.544726
12:58:51 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
12:58:51 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:58:51 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
12:58:51 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
12:58:51 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.105217 m/s - 0.106375 m/s)
12:58:51 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
12:58:51 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
12:58:51 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
12:58:51 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
12:58:51 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
12:58:51 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:58:51 DEBUG opendrift.models.basemodel:2037: ======================================================================
12:58:51 INFO opendrift.models.basemodel:2038: 2024-11-09 10:00:00 - step 35 of 71 - 1000 active elements (0 deactivated)
12:58:51 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
12:58:51 DEBUG opendrift.models.basemodel:2046: ======================================================================
12:58:51 DEBUG opendrift.models.basemodel:2057: 60.52775336779137 <- latitude -> 60.59401852685672
12:58:51 DEBUG opendrift.models.basemodel:2062: 4.46640672105974 <- longitude -> 4.48640817149736
12:58:51 DEBUG opendrift.models.basemodel:2065: z = 0.0
12:58:51 DEBUG opendrift.models.basemodel:2068: ---------------------------------
12:58:51 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:58:51 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
12:58:51 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:58:51 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
12:58:51 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:58:51 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:58:51 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
12:58:51 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-09 10:00:00 (before)
2024-11-09 11:00:00 (after)
12:59:06 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
12:59:06 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
12:59:06 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
12:59:06 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
12:59:06 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
12:59:06 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
12:59:06 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 30x27x7) for time before (2024-11-09 10:00:00)
12:59:06 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-09 10:00:00) in space (linearNDFast)
12:59:06 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
12:59:06 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
12:59:06 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.53360401129956 and -65.51360257286368 degrees.
12:59:06 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.53360401129956 and -65.51360257286368 degrees.
12:59:06 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:59:06 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:59:06 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
12:59:06 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:59:06 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
12:59:06 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:59:06 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:59:06 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
12:59:06 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
12:59:06 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
12:59:06 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
12:59:06 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:59:06 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
12:59:06 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
12:59:06 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
12:59:06 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
12:59:06 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.123872 (min) -0.0482298 (max)
12:59:06 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.390516 (min) 0.631611 (max)
12:59:06 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.58441 (min) -0.57819 (max)
12:59:06 DEBUG opendrift.models.basemodel.environment:905: x_wind: -1.84468 (min) -1.80879 (max)
12:59:06 DEBUG opendrift.models.basemodel.environment:905: y_wind: 4.81169 (min) 4.93556 (max)
12:59:06 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 2.36433e-05 (min) 2.77247e-05 (max)
12:59:06 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
12:59:06 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
12:59:06 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
12:59:06 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
12:59:06 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
12:59:06 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
12:59:06 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
12:59:06 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
12:59:06 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
12:59:06 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
12:59:06 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
12:59:06 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
12:59:06 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
12:59:06 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
12:59:06 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
12:59:06 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
12:59:06 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
12:59:06 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 316.256 (min) 332.488 (max)
12:59:06 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
12:59:06 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
12:59:06 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.651976, mean: 0.670716, max: 0.681373
12:59:06 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
12:59:06 DEBUG opendrift.models.physics_methods:1061: min: 4.398913, mean: 4.461623, max: 4.496990
12:59:06 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 4.398913, mean: 4.461623, max: 4.496990
12:59:06 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
12:59:06 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:59:06 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
12:59:06 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
12:59:06 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.102962 m/s - 0.105258 m/s)
12:59:06 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
12:59:06 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
12:59:06 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
12:59:06 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
12:59:06 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
12:59:07 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:59:07 DEBUG opendrift.models.basemodel:2037: ======================================================================
12:59:07 INFO opendrift.models.basemodel:2038: 2024-11-09 11:00:00 - step 36 of 71 - 1000 active elements (0 deactivated)
12:59:07 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
12:59:07 DEBUG opendrift.models.basemodel:2046: ======================================================================
12:59:07 DEBUG opendrift.models.basemodel:2057: 60.54356007146521 <- latitude -> 60.617534507333815
12:59:07 DEBUG opendrift.models.basemodel:2062: 4.455856608271234 <- longitude -> 4.480871888859021
12:59:07 DEBUG opendrift.models.basemodel:2065: z = 0.0
12:59:07 DEBUG opendrift.models.basemodel:2068: ---------------------------------
12:59:07 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:59:07 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
12:59:07 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:59:07 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
12:59:07 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:59:07 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:59:07 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
12:59:07 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-09 11:00:00 (before)
2024-11-09 12:00:00 (after)
12:59:22 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
12:59:22 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
12:59:22 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
12:59:22 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
12:59:22 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
12:59:22 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
12:59:22 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity']
12:59:22 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 31x28x7) for time before (2024-11-09 11:00:00)
12:59:22 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-09 11:00:00) in space (linearNDFast)
12:59:22 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
12:59:22 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
12:59:22 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.54415411482194 and -65.51913885647176 degrees.
12:59:22 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.54415411482194 and -65.51913885647176 degrees.
12:59:22 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:59:22 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:59:22 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
12:59:22 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:59:22 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
12:59:22 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:59:22 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:59:22 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
12:59:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
12:59:22 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
12:59:22 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
12:59:22 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:59:22 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
12:59:22 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
12:59:22 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
12:59:22 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
12:59:22 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.131304 (min) -0.0750887 (max)
12:59:22 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.457418 (min) 0.66167 (max)
12:59:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.446629 (min) -0.445066 (max)
12:59:22 DEBUG opendrift.models.basemodel.environment:905: x_wind: -0.212891 (min) 0.0882715 (max)
12:59:22 DEBUG opendrift.models.basemodel.environment:905: y_wind: 5.39709 (min) 5.62491 (max)
12:59:22 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 4.5871e-05 (min) 4.75831e-05 (max)
12:59:22 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
12:59:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
12:59:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
12:59:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
12:59:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
12:59:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
12:59:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
12:59:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
12:59:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
12:59:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
12:59:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
12:59:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
12:59:22 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
12:59:22 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
12:59:22 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
12:59:22 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
12:59:22 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
12:59:22 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 319.789 (min) 336.41 (max)
12:59:22 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
12:59:22 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
12:59:22 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.716702, mean: 0.754400, max: 0.778375
12:59:22 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
12:59:22 DEBUG opendrift.models.physics_methods:1061: min: 4.612102, mean: 4.731609, max: 4.806445
12:59:22 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 4.612102, mean: 4.731609, max: 4.806445
12:59:22 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
12:59:22 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:59:22 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
12:59:22 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
12:59:22 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.107952 m/s - 0.112501 m/s)
12:59:22 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
12:59:22 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
12:59:22 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
12:59:22 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
12:59:22 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
12:59:22 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:59:22 DEBUG opendrift.models.basemodel:2037: ======================================================================
12:59:22 INFO opendrift.models.basemodel:2038: 2024-11-09 12:00:00 - step 37 of 71 - 1000 active elements (0 deactivated)
12:59:22 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
12:59:22 DEBUG opendrift.models.basemodel:2046: ======================================================================
12:59:22 DEBUG opendrift.models.basemodel:2057: 60.561826588100885 <- latitude -> 60.64250666541815
12:59:22 DEBUG opendrift.models.basemodel:2062: 4.446938103782695 <- longitude -> 4.476043209874786
12:59:22 DEBUG opendrift.models.basemodel:2065: z = 0.0
12:59:22 DEBUG opendrift.models.basemodel:2068: ---------------------------------
12:59:22 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:59:22 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
12:59:22 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:59:22 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
12:59:22 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:59:22 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:59:22 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
12:59:22 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-09 12:00:00 (before)
2024-11-09 13:00:00 (after)
12:59:33 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
12:59:33 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
12:59:33 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
12:59:33 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
12:59:33 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
12:59:33 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
12:59:33 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['ocean_vertical_diffusivity', 'x_sea_water_velocity', 'upward_sea_water_velocity', 'y_sea_water_velocity']
12:59:33 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 32x29x7) for time before (2024-11-09 12:00:00)
12:59:33 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-09 12:00:00) in space (linearNDFast)
12:59:33 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
12:59:33 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
12:59:33 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.55307261241069 and -65.52396752636548 degrees.
12:59:33 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.55307261241069 and -65.52396752636548 degrees.
12:59:33 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:59:33 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:59:33 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
12:59:33 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:59:33 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
12:59:33 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:59:33 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:59:33 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
12:59:33 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
12:59:33 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
12:59:33 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
12:59:33 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:59:33 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
12:59:33 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
12:59:33 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
12:59:33 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
12:59:33 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.0946508 (min) -0.0432913 (max)
12:59:33 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.478351 (min) 0.678299 (max)
12:59:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.280165 (min) -0.274332 (max)
12:59:33 DEBUG opendrift.models.basemodel.environment:905: x_wind: 0.278696 (min) 0.455717 (max)
12:59:33 DEBUG opendrift.models.basemodel.environment:905: y_wind: 5.2391 (min) 5.42726 (max)
12:59:33 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 4.98164e-05 (min) 5.04062e-05 (max)
12:59:33 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
12:59:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
12:59:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
12:59:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
12:59:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
12:59:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
12:59:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
12:59:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
12:59:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
12:59:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
12:59:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
12:59:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
12:59:33 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
12:59:33 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
12:59:33 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
12:59:33 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
12:59:33 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
12:59:33 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 324.538 (min) 340.151 (max)
12:59:33 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
12:59:33 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
12:59:33 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.680334, mean: 0.713654, max: 0.726508
12:59:33 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
12:59:33 DEBUG opendrift.models.physics_methods:1061: min: 4.493562, mean: 4.602220, max: 4.643546
12:59:33 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 4.493562, mean: 4.602220, max: 4.643546
12:59:33 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
12:59:33 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:59:33 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
12:59:33 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
12:59:33 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.105178 m/s - 0.108688 m/s)
12:59:33 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
12:59:33 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
12:59:33 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
12:59:33 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
12:59:33 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
12:59:33 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:59:33 DEBUG opendrift.models.basemodel:2037: ======================================================================
12:59:33 INFO opendrift.models.basemodel:2038: 2024-11-09 13:00:00 - step 38 of 71 - 1000 active elements (0 deactivated)
12:59:33 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
12:59:33 DEBUG opendrift.models.basemodel:2046: ======================================================================
12:59:33 DEBUG opendrift.models.basemodel:2057: 60.58078895593609 <- latitude -> 60.66779060015755
12:59:33 DEBUG opendrift.models.basemodel:2062: 4.441314585992134 <- longitude -> 4.473566593611973
12:59:33 DEBUG opendrift.models.basemodel:2065: z = 0.0
12:59:33 DEBUG opendrift.models.basemodel:2068: ---------------------------------
12:59:33 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:59:33 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
12:59:33 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:59:33 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
12:59:33 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:59:33 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:59:33 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
12:59:33 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-09 13:00:00 (before)
2024-11-09 14:00:00 (after)
12:59:44 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
12:59:44 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
12:59:44 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
12:59:44 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
12:59:44 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
12:59:44 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
12:59:44 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['ocean_vertical_diffusivity', 'x_sea_water_velocity', 'upward_sea_water_velocity', 'y_sea_water_velocity']
12:59:44 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 32x29x7) for time before (2024-11-09 13:00:00)
12:59:44 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-09 13:00:00) in space (linearNDFast)
12:59:44 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
12:59:44 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
12:59:44 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.55869611855931 and -65.52644414267084 degrees.
12:59:44 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.55869611855931 and -65.52644414267084 degrees.
12:59:44 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:59:44 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:59:44 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
12:59:44 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:59:44 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
12:59:44 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:59:44 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:59:44 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
12:59:44 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
12:59:44 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
12:59:44 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
12:59:44 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:59:44 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
12:59:44 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
12:59:44 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
12:59:44 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
12:59:44 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.0732817 (min) -0.0100367 (max)
12:59:44 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.450444 (min) 0.634614 (max)
12:59:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.123969 (min) -0.113298 (max)
12:59:44 DEBUG opendrift.models.basemodel.environment:905: x_wind: -0.186161 (min) -0.118194 (max)
12:59:44 DEBUG opendrift.models.basemodel.environment:905: y_wind: 4.81167 (min) 4.86966 (max)
12:59:44 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 3.73165e-05 (min) 3.92215e-05 (max)
12:59:44 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
12:59:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
12:59:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
12:59:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
12:59:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
12:59:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
12:59:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
12:59:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
12:59:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
12:59:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
12:59:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
12:59:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
12:59:44 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
12:59:44 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
12:59:44 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
12:59:44 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
12:59:44 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
12:59:44 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 330.19 (min) 344.152 (max)
12:59:44 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
12:59:44 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
12:59:44 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.569886, mean: 0.582874, max: 0.584168
12:59:44 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
12:59:44 DEBUG opendrift.models.physics_methods:1061: min: 4.112668, mean: 4.159264, max: 4.163884
12:59:44 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 4.112668, mean: 4.159264, max: 4.163884
12:59:44 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
12:59:44 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:59:44 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
12:59:44 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
12:59:44 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.096262 m/s - 0.097461 m/s)
12:59:44 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
12:59:44 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
12:59:44 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
12:59:44 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
12:59:44 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
12:59:44 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:59:44 DEBUG opendrift.models.basemodel:2037: ======================================================================
12:59:44 INFO opendrift.models.basemodel:2038: 2024-11-09 14:00:00 - step 39 of 71 - 1000 active elements (0 deactivated)
12:59:44 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
12:59:44 DEBUG opendrift.models.basemodel:2046: ======================================================================
12:59:44 DEBUG opendrift.models.basemodel:2057: 60.59848622250823 <- latitude -> 60.69140351372113
12:59:44 DEBUG opendrift.models.basemodel:2062: 4.436330316181643 <- longitude -> 4.4726647451138035
12:59:44 DEBUG opendrift.models.basemodel:2065: z = 0.0
12:59:44 DEBUG opendrift.models.basemodel:2068: ---------------------------------
12:59:44 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:59:44 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
12:59:44 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:59:44 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
12:59:44 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:59:44 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:59:44 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
12:59:44 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-09 14:00:00 (before)
2024-11-09 15:00:00 (after)
12:59:57 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
12:59:57 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
12:59:57 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
12:59:57 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
12:59:57 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
12:59:57 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
12:59:57 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['ocean_vertical_diffusivity', 'x_sea_water_velocity', 'upward_sea_water_velocity', 'y_sea_water_velocity']
12:59:57 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 33x30x7) for time before (2024-11-09 14:00:00)
12:59:57 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-09 14:00:00) in space (linearNDFast)
12:59:57 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
12:59:57 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
12:59:57 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.5636803836279 and -65.52734598313714 degrees.
12:59:57 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.5636803836279 and -65.52734598313714 degrees.
12:59:57 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:59:57 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:59:57 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
12:59:57 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:59:57 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
12:59:57 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:59:57 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:59:57 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
12:59:57 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
12:59:57 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
12:59:57 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
12:59:57 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
12:59:57 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
12:59:57 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
12:59:57 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
12:59:57 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
12:59:57 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.0632387 (min) -0.00872003 (max)
12:59:57 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.40542 (min) 0.591999 (max)
12:59:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.0171672 (min) -0.00648256 (max)
12:59:57 DEBUG opendrift.models.basemodel.environment:905: x_wind: -0.355567 (min) -0.0981445 (max)
12:59:57 DEBUG opendrift.models.basemodel.environment:905: y_wind: 4.67296 (min) 4.78874 (max)
12:59:57 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 2.15744e-05 (min) 2.42669e-05 (max)
12:59:57 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
12:59:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
12:59:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
12:59:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
12:59:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
12:59:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
12:59:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
12:59:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
12:59:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
12:59:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
12:59:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
12:59:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
12:59:57 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
12:59:57 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
12:59:57 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
12:59:57 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
12:59:57 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
12:59:57 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 335.548 (min) 347.622 (max)
12:59:57 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
12:59:57 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
12:59:57 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.537500, mean: 0.549003, max: 0.567238
12:59:57 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
12:59:57 DEBUG opendrift.models.physics_methods:1061: min: 3.994100, mean: 4.036502, max: 4.103103
12:59:57 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 3.994100, mean: 4.036502, max: 4.103103
12:59:57 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
12:59:57 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:59:57 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
12:59:57 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
12:59:57 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.093487 m/s - 0.096038 m/s)
12:59:57 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
12:59:57 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
12:59:57 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
12:59:57 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
12:59:57 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
12:59:57 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
12:59:57 DEBUG opendrift.models.basemodel:2037: ======================================================================
12:59:57 INFO opendrift.models.basemodel:2038: 2024-11-09 15:00:00 - step 40 of 71 - 1000 active elements (0 deactivated)
12:59:57 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
12:59:57 DEBUG opendrift.models.basemodel:2046: ======================================================================
12:59:57 DEBUG opendrift.models.basemodel:2057: 60.614607735887894 <- latitude -> 60.71358609335009
12:59:57 DEBUG opendrift.models.basemodel:2062: 4.431691737561627 <- longitude -> 4.471962511461991
12:59:57 DEBUG opendrift.models.basemodel:2065: z = 0.0
12:59:57 DEBUG opendrift.models.basemodel:2068: ---------------------------------
12:59:57 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
12:59:57 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
12:59:57 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
12:59:57 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
12:59:57 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
12:59:57 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
12:59:57 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
12:59:57 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-09 15:00:00 (before)
2024-11-09 16:00:00 (after)
13:00:10 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
13:00:10 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:00:10 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:00:10 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:00:10 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:00:10 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:00:10 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['ocean_vertical_diffusivity', 'x_sea_water_velocity', 'upward_sea_water_velocity', 'y_sea_water_velocity']
13:00:10 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 33x31x7) for time before (2024-11-09 15:00:00)
13:00:10 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-09 15:00:00) in space (linearNDFast)
13:00:10 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:00:10 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:00:10 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.56831895713705 and -65.52804821166092 degrees.
13:00:10 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.56831895713705 and -65.52804821166092 degrees.
13:00:10 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:00:10 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:00:10 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:00:10 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:00:10 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:00:10 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:00:10 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:00:10 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:00:10 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:00:10 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:00:10 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:00:10 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:00:10 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:00:10 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:00:10 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
13:00:10 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:00:10 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.0665422 (min) -0.0209278 (max)
13:00:10 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.356993 (min) 0.507854 (max)
13:00:10 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0.0314726 (min) 0.0438327 (max)
13:00:10 DEBUG opendrift.models.basemodel.environment:905: x_wind: 0.261304 (min) 0.32288 (max)
13:00:10 DEBUG opendrift.models.basemodel.environment:905: y_wind: 4.1694 (min) 4.52934 (max)
13:00:10 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 1.81081e-06 (min) 4.14755e-06 (max)
13:00:10 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:00:10 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:00:10 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:00:10 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:00:10 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:00:10 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:00:10 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:00:10 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:00:10 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:00:10 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:00:10 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:00:10 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:00:10 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:00:10 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:00:10 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:00:10 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:00:10 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:00:10 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 339.958 (min) 351.822 (max)
13:00:10 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:00:10 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:00:10 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.429401, mean: 0.448274, max: 0.507221
13:00:10 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:00:10 DEBUG opendrift.models.physics_methods:1061: min: 3.569942, mean: 3.647144, max: 3.879967
13:00:10 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 3.569942, mean: 3.647144, max: 3.879967
13:00:10 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:00:10 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:00:10 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:00:10 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:00:10 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.083559 m/s - 0.090816 m/s)
13:00:10 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:00:10 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:00:10 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:00:10 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:00:10 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:00:10 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:00:10 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:00:10 INFO opendrift.models.basemodel:2038: 2024-11-09 16:00:00 - step 41 of 71 - 1000 active elements (0 deactivated)
13:00:10 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:00:10 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:00:10 DEBUG opendrift.models.basemodel:2057: 60.62885034257371 <- latitude -> 60.73272899616059
13:00:10 DEBUG opendrift.models.basemodel:2062: 4.428072109927921 <- longitude -> 4.470959658585341
13:00:10 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:00:10 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:00:10 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:00:10 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:00:10 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:00:10 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
13:00:10 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:00:10 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:00:10 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
13:00:10 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-09 16:00:00 (before)
2024-11-09 17:00:00 (after)
13:00:26 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
13:00:26 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:00:26 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:00:26 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:00:26 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:00:26 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:00:26 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['ocean_vertical_diffusivity', 'x_sea_water_velocity', 'upward_sea_water_velocity', 'y_sea_water_velocity']
13:00:26 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 34x31x7) for time before (2024-11-09 16:00:00)
13:00:26 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-09 16:00:00) in space (linearNDFast)
13:00:26 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:00:26 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:00:26 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.57193857576372 and -65.5290510570026 degrees.
13:00:26 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.57193857576372 and -65.5290510570026 degrees.
13:00:26 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:00:26 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:00:26 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:00:26 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:00:26 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:00:26 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:00:26 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:00:26 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:00:26 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:00:26 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:00:26 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:00:26 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:00:26 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:00:26 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:00:26 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
13:00:26 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:00:26 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.11998 (min) -0.0271073 (max)
13:00:26 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.325224 (min) 0.441549 (max)
13:00:26 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0.00981846 (min) 0.0271892 (max)
13:00:26 DEBUG opendrift.models.basemodel.environment:905: x_wind: 0.0855026 (min) 0.395086 (max)
13:00:26 DEBUG opendrift.models.basemodel.environment:905: y_wind: 3.60273 (min) 4.19251 (max)
13:00:26 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -1.72043e-05 (min) -1.62368e-05 (max)
13:00:26 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:00:26 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:00:26 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:00:26 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:00:26 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:00:26 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:00:26 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:00:26 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:00:26 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:00:26 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:00:26 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:00:26 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:00:26 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:00:26 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:00:26 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:00:26 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:00:26 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:00:26 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 343.502 (min) 356.993 (max)
13:00:26 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:00:26 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:00:26 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.319479, mean: 0.364699, max: 0.435595
13:00:26 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:00:26 DEBUG opendrift.models.physics_methods:1061: min: 3.079291, mean: 3.288457, max: 3.595599
13:00:26 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 3.079291, mean: 3.288457, max: 3.595599
13:00:26 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:00:26 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:00:26 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:00:26 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:00:26 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.072075 m/s - 0.084160 m/s)
13:00:26 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:00:26 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:00:26 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:00:26 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:00:26 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:00:26 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:00:26 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:00:26 INFO opendrift.models.basemodel:2038: 2024-11-09 17:00:00 - step 42 of 71 - 1000 active elements (0 deactivated)
13:00:26 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:00:26 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:00:26 DEBUG opendrift.models.basemodel:2057: 60.64168611969195 <- latitude -> 60.74843425985515
13:00:26 DEBUG opendrift.models.basemodel:2062: 4.420628523158731 <- longitude -> 4.469288787388135
13:00:26 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:00:26 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:00:26 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:00:26 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:00:26 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:00:26 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
13:00:26 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:00:26 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:00:26 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
13:00:26 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-09 17:00:00 (before)
2024-11-09 18:00:00 (after)
13:00:42 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
13:00:42 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:00:42 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:00:42 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:00:42 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:00:42 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:00:42 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['ocean_vertical_diffusivity', 'x_sea_water_velocity', 'upward_sea_water_velocity', 'y_sea_water_velocity']
13:00:42 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 34x31x7) for time before (2024-11-09 17:00:00)
13:00:42 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-09 17:00:00) in space (linearNDFast)
13:00:42 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:00:42 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:00:42 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.57938215492078 and -65.53072193077932 degrees.
13:00:42 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.57938215492078 and -65.53072193077932 degrees.
13:00:42 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:00:42 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:00:42 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:00:42 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:00:42 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:00:42 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:00:42 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:00:42 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:00:42 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:00:42 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:00:42 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:00:42 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:00:42 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:00:42 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:00:42 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
13:00:42 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:00:42 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.242995 (min) -0.0457803 (max)
13:00:42 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.296839 (min) 0.408493 (max)
13:00:42 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.084573 (min) -0.0626346 (max)
13:00:42 DEBUG opendrift.models.basemodel.environment:905: x_wind: -0.988713 (min) -0.686046 (max)
13:00:42 DEBUG opendrift.models.basemodel.environment:905: y_wind: 3.53906 (min) 3.71028 (max)
13:00:42 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -3.59104e-05 (min) -3.4682e-05 (max)
13:00:42 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:00:42 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:00:42 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:00:42 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:00:42 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:00:42 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:00:42 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:00:42 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:00:42 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:00:42 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:00:42 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:00:42 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:00:42 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:00:42 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:00:42 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:00:42 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:00:42 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:00:42 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 346.422 (min) 361.215 (max)
13:00:42 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:00:42 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:00:42 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.331154, mean: 0.346226, max: 0.353154
13:00:42 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:00:42 DEBUG opendrift.models.physics_methods:1061: min: 3.135052, mean: 3.205502, max: 3.237515
13:00:42 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 3.135052, mean: 3.205502, max: 3.237515
13:00:42 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:00:42 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:00:42 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:00:42 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:00:42 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.073380 m/s - 0.075778 m/s)
13:00:42 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:00:42 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:00:42 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:00:42 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:00:42 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:00:42 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:00:42 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:00:42 INFO opendrift.models.basemodel:2038: 2024-11-09 18:00:00 - step 43 of 71 - 1000 active elements (0 deactivated)
13:00:42 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:00:42 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:00:42 DEBUG opendrift.models.basemodel:2057: 60.65365509618373 <- latitude -> 60.76214869631187
13:00:42 DEBUG opendrift.models.basemodel:2062: 4.403306979537167 <- longitude -> 4.465372705174166
13:00:42 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:00:42 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:00:42 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:00:42 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:00:42 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:00:42 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
13:00:42 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:00:42 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:00:42 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
13:00:42 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-09 18:00:00 (before)
2024-11-09 19:00:00 (after)
13:00:57 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
13:00:57 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:00:57 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:00:57 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:00:57 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:00:57 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:00:57 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['ocean_vertical_diffusivity', 'x_sea_water_velocity', 'upward_sea_water_velocity', 'y_sea_water_velocity']
13:00:57 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 34x32x7) for time before (2024-11-09 18:00:00)
13:00:57 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-09 18:00:00) in space (linearNDFast)
13:00:57 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:00:57 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:00:57 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.59670369996441 and -65.53463801008562 degrees.
13:00:57 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.59670369996441 and -65.53463801008562 degrees.
13:00:57 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:00:57 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:00:57 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:00:57 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:00:57 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:00:57 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:00:57 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:00:57 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:00:57 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:00:57 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:00:57 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:00:57 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:00:57 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:00:57 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:00:57 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
13:00:57 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:00:57 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.330414 (min) -0.106474 (max)
13:00:57 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.284211 (min) 0.403284 (max)
13:00:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.236161 (min) -0.223588 (max)
13:00:57 DEBUG opendrift.models.basemodel.environment:905: x_wind: -1.10494 (min) -0.7683 (max)
13:00:57 DEBUG opendrift.models.basemodel.environment:905: y_wind: 3.67336 (min) 3.83187 (max)
13:00:57 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -5.10339e-05 (min) -4.78635e-05 (max)
13:00:57 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:00:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:00:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:00:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:00:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:00:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:00:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:00:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:00:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:00:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:00:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:00:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:00:57 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:00:57 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:00:57 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:00:57 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:00:57 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:00:57 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 348.291 (min) 363.778 (max)
13:00:57 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:00:57 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:00:57 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.346463, mean: 0.373034, max: 0.386084
13:00:57 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:00:57 DEBUG opendrift.models.physics_methods:1061: min: 3.206696, mean: 3.327315, max: 3.385094
13:00:57 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 3.206696, mean: 3.327315, max: 3.385094
13:00:57 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:00:57 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:00:57 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:00:57 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:00:57 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.075057 m/s - 0.079233 m/s)
13:00:57 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:00:57 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:00:57 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:00:57 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:00:57 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:00:57 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:00:57 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:00:57 INFO opendrift.models.basemodel:2038: 2024-11-09 19:00:00 - step 44 of 71 - 1000 active elements (0 deactivated)
13:00:57 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:00:57 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:00:57 DEBUG opendrift.models.basemodel:2057: 60.66521119436521 <- latitude -> 60.7776327470731
13:00:57 DEBUG opendrift.models.basemodel:2062: 4.380017155852833 <- longitude -> 4.457350993841654
13:00:57 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:00:57 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:00:57 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:00:57 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:00:57 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:00:57 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
13:00:57 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:00:57 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:00:57 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
13:00:57 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-09 19:00:00 (before)
2024-11-09 20:00:00 (after)
13:01:13 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
13:01:13 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:01:13 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:01:13 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:01:13 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:01:13 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:01:13 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['ocean_vertical_diffusivity', 'x_sea_water_velocity', 'upward_sea_water_velocity', 'y_sea_water_velocity']
13:01:13 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 34x33x7) for time before (2024-11-09 19:00:00)
13:01:13 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-09 19:00:00) in space (linearNDFast)
13:01:13 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:01:13 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:01:13 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.6199935180903 and -65.5426597207236 degrees.
13:01:13 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.6199935180903 and -65.5426597207236 degrees.
13:01:13 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:01:13 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:01:13 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:01:13 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:01:13 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:01:13 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:01:13 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:01:13 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:01:13 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:01:13 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:01:13 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:01:13 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:01:13 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:01:13 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:01:13 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
13:01:13 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:01:13 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.343152 (min) -0.148878 (max)
13:01:13 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.32205 (min) 0.475346 (max)
13:01:13 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.420899 (min) -0.416544 (max)
13:01:13 DEBUG opendrift.models.basemodel.environment:905: x_wind: -1.88533 (min) -1.65165 (max)
13:01:13 DEBUG opendrift.models.basemodel.environment:905: y_wind: 2.34499 (min) 2.86575 (max)
13:01:13 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -5.16356e-05 (min) -4.88364e-05 (max)
13:01:13 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:01:13 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:01:13 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:01:13 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:01:13 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:01:13 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:01:13 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:01:13 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:01:13 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:01:13 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:01:13 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:01:13 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:01:13 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:01:13 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:01:13 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:01:13 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:01:13 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:01:13 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 348.436 (min) 368.041 (max)
13:01:13 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:01:13 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:01:13 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.222068, mean: 0.232335, max: 0.269135
13:01:13 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:01:13 DEBUG opendrift.models.physics_methods:1061: min: 2.567274, mean: 2.625507, max: 2.826275
13:01:13 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 2.567274, mean: 2.625507, max: 2.826275
13:01:13 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:01:13 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:01:13 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:01:13 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:01:13 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.060090 m/s - 0.066153 m/s)
13:01:13 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:01:13 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:01:13 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:01:13 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:01:13 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:01:13 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:01:13 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:01:13 INFO opendrift.models.basemodel:2038: 2024-11-09 20:00:00 - step 45 of 71 - 1000 active elements (0 deactivated)
13:01:13 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:01:13 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:01:13 DEBUG opendrift.models.basemodel:2057: 60.67719115808103 <- latitude -> 60.79481578575651
13:01:13 DEBUG opendrift.models.basemodel:2062: 4.35514955187848 <- longitude -> 4.445124610558239
13:01:13 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:01:13 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:01:13 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:01:13 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:01:13 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:01:13 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
13:01:13 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:01:13 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:01:13 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
13:01:13 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-09 20:00:00 (before)
2024-11-09 21:00:00 (after)
13:01:31 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
13:01:31 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:01:31 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:01:31 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:01:31 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:01:31 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:01:31 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['ocean_vertical_diffusivity', 'x_sea_water_velocity', 'upward_sea_water_velocity', 'y_sea_water_velocity']
13:01:31 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 34x34x7) for time before (2024-11-09 20:00:00)
13:01:31 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-09 20:00:00) in space (linearNDFast)
13:01:31 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:01:31 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:01:31 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.64486112400573 and -65.55488609191273 degrees.
13:01:31 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.64486112400573 and -65.55488609191273 degrees.
13:01:31 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:01:31 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:01:31 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:01:31 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:01:31 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:01:31 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:01:31 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:01:31 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:01:31 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:01:31 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:01:31 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:01:31 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:01:31 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:01:31 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:01:31 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
13:01:31 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:01:31 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.301386 (min) -0.189606 (max)
13:01:31 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.360617 (min) 0.536292 (max)
13:01:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.598891 (min) -0.592536 (max)
13:01:31 DEBUG opendrift.models.basemodel.environment:905: x_wind: -2.37286 (min) -2.1836 (max)
13:01:31 DEBUG opendrift.models.basemodel.environment:905: y_wind: 1.82501 (min) 2.32196 (max)
13:01:31 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -4.29399e-05 (min) -4.08066e-05 (max)
13:01:31 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:01:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:01:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:01:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:01:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:01:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:01:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:01:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:01:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:01:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:01:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:01:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:01:31 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:01:31 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:01:31 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:01:31 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:01:31 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:01:31 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 347.017 (min) 374.16 (max)
13:01:31 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:01:31 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:01:31 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.200519, mean: 0.223940, max: 0.270703
13:01:31 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:01:31 DEBUG opendrift.models.physics_methods:1061: min: 2.439535, mean: 2.576810, max: 2.834496
13:01:31 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 2.439535, mean: 2.576810, max: 2.834496
13:01:31 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:01:31 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:01:31 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:01:31 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:01:31 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.057100 m/s - 0.066345 m/s)
13:01:31 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:01:31 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:01:31 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:01:31 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:01:31 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:01:31 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:01:31 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:01:31 INFO opendrift.models.basemodel:2038: 2024-11-09 21:00:00 - step 46 of 71 - 1000 active elements (0 deactivated)
13:01:31 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:01:31 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:01:31 DEBUG opendrift.models.basemodel:2057: 60.69011848028836 <- latitude -> 60.81325601023357
13:01:31 DEBUG opendrift.models.basemodel:2062: 4.332221788654688 <- longitude -> 4.429737840546177
13:01:31 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:01:31 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:01:31 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:01:31 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:01:31 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:01:31 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
13:01:31 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:01:31 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:01:31 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
13:01:31 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-09 21:00:00 (before)
2024-11-09 22:00:00 (after)
13:01:46 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
13:01:46 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:01:46 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:01:46 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:01:46 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:01:46 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:01:46 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['ocean_vertical_diffusivity', 'x_sea_water_velocity', 'upward_sea_water_velocity', 'y_sea_water_velocity']
13:01:46 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 35x35x7) for time before (2024-11-09 21:00:00)
13:01:46 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-09 21:00:00) in space (linearNDFast)
13:01:46 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:01:46 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:01:46 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.66778887497226 and -65.57027285427367 degrees.
13:01:46 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.66778887497226 and -65.57027285427367 degrees.
13:01:46 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:01:46 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:01:46 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:01:46 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:01:46 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:01:46 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:01:46 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:01:46 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:01:46 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:01:46 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:01:46 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:01:46 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:01:46 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:01:46 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:01:46 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
13:01:46 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:01:46 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.252649 (min) -0.213233 (max)
13:01:46 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.406525 (min) 0.562934 (max)
13:01:46 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.7169 (min) -0.705237 (max)
13:01:46 DEBUG opendrift.models.basemodel.environment:905: x_wind: -2.36605 (min) -2.17195 (max)
13:01:46 DEBUG opendrift.models.basemodel.environment:905: y_wind: 1.94965 (min) 2.2776 (max)
13:01:46 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -2.20839e-05 (min) -2.0289e-05 (max)
13:01:46 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:01:46 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:01:46 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:01:46 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:01:46 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:01:46 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:01:46 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:01:46 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:01:46 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:01:46 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:01:46 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:01:46 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:01:46 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:01:46 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:01:46 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:01:46 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:01:46 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:01:46 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 344.543 (min) 380.728 (max)
13:01:46 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:01:46 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:01:46 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.221865, mean: 0.227320, max: 0.249412
13:01:46 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:01:46 DEBUG opendrift.models.physics_methods:1061: min: 2.566105, mean: 2.597269, max: 2.720746
13:01:46 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 2.566105, mean: 2.597269, max: 2.720746
13:01:46 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:01:46 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:01:46 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:01:46 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:01:46 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.060063 m/s - 0.063683 m/s)
13:01:46 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:01:46 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:01:46 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:01:46 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:01:46 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:01:46 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:01:46 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:01:46 INFO opendrift.models.basemodel:2038: 2024-11-09 22:00:00 - step 47 of 71 - 1000 active elements (0 deactivated)
13:01:46 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:01:46 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:01:46 DEBUG opendrift.models.basemodel:2057: 60.704643663380736 <- latitude -> 60.832193475038125
13:01:46 DEBUG opendrift.models.basemodel:2062: 4.314610675791464 <- longitude -> 4.412573629829117
13:01:46 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:01:46 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:01:46 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:01:46 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:01:46 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:01:46 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
13:01:46 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:01:46 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:01:46 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
13:01:46 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-09 22:00:00 (before)
2024-11-09 23:00:00 (after)
13:02:02 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
13:02:02 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:02:02 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:02:02 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:02:02 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:02:02 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:02:02 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['ocean_vertical_diffusivity', 'x_sea_water_velocity', 'upward_sea_water_velocity', 'y_sea_water_velocity']
13:02:02 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 35x36x7) for time before (2024-11-09 22:00:00)
13:02:02 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-09 22:00:00) in space (linearNDFast)
13:02:02 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:02:02 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:02:02 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.68539998583842 and -65.58743705974314 degrees.
13:02:02 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.68539998583842 and -65.58743705974314 degrees.
13:02:02 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:02:02 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:02:02 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:02:02 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:02:02 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:02:02 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:02:02 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:02:02 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:02:02 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:02:02 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:02:02 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:02:02 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:02:02 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:02:02 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:02:02 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
13:02:02 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:02:02 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.228755 (min) -0.131987 (max)
13:02:02 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.49131 (min) 0.571548 (max)
13:02:02 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.734986 (min) -0.72481 (max)
13:02:02 DEBUG opendrift.models.basemodel.environment:905: x_wind: -2.80159 (min) -2.56782 (max)
13:02:02 DEBUG opendrift.models.basemodel.environment:905: y_wind: 2.61082 (min) 2.80383 (max)
13:02:02 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 8.02949e-06 (min) 1.02645e-05 (max)
13:02:02 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:02:02 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:02:02 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:02:02 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:02:02 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:02:02 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:02:02 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:02:02 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:02:02 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:02:02 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:02:02 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:02:02 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:02:02 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:02:02 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:02:02 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:02:02 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:02:02 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:02:02 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 342.278 (min) 388.027 (max)
13:02:02 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:02:02 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:02:02 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.335505, mean: 0.361026, max: 0.386475
13:02:02 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:02:02 DEBUG opendrift.models.physics_methods:1061: min: 3.155581, mean: 3.273026, max: 3.386804
13:02:02 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 3.155581, mean: 3.273026, max: 3.386804
13:02:02 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:02:02 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:02:02 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:02:02 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:02:02 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.073860 m/s - 0.079273 m/s)
13:02:02 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:02:02 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:02:02 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:02:02 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:02:02 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:02:02 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:02:02 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:02:02 INFO opendrift.models.basemodel:2038: 2024-11-09 23:00:00 - step 48 of 71 - 1000 active elements (0 deactivated)
13:02:02 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:02:02 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:02:02 DEBUG opendrift.models.basemodel:2057: 60.722328326457536 <- latitude -> 60.851944780673165
13:02:02 DEBUG opendrift.models.basemodel:2062: 4.296060778327223 <- longitude -> 4.3947268488675855
13:02:02 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:02:02 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:02:02 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:02:02 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:02:02 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:02:02 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
13:02:02 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:02:02 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:02:02 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
13:02:02 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-09 23:00:00 (before)
2024-11-10 00:00:00 (after)
13:02:21 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
13:02:21 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:02:21 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:02:21 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:02:21 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:02:21 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:02:21 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['ocean_vertical_diffusivity', 'x_sea_water_velocity', 'upward_sea_water_velocity', 'y_sea_water_velocity']
13:02:21 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 36x36x7) for time before (2024-11-09 23:00:00)
13:02:21 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-09 23:00:00) in space (linearNDFast)
13:02:21 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:02:21 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:02:21 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.70394988187705 and -65.60528385417098 degrees.
13:02:21 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.70394988187705 and -65.60528385417098 degrees.
13:02:21 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:02:21 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:02:21 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:02:21 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:02:21 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:02:21 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:02:21 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:02:21 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:02:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:02:21 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:02:21 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:02:21 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:02:21 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:02:21 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:02:21 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
13:02:21 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:02:21 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.271335 (min) -0.0886663 (max)
13:02:21 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.535829 (min) 0.577636 (max)
13:02:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.65151 (min) -0.646821 (max)
13:02:21 DEBUG opendrift.models.basemodel.environment:905: x_wind: -3.10108 (min) -2.77399 (max)
13:02:21 DEBUG opendrift.models.basemodel.environment:905: y_wind: 3.2554 (min) 3.5248 (max)
13:02:21 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 3.25844e-05 (min) 3.39705e-05 (max)
13:02:21 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:02:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:02:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:02:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:02:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:02:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:02:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:02:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:02:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:02:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:02:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:02:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:02:21 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:02:21 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:02:21 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:02:21 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:02:21 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:02:21 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 341.508 (min) 393.7 (max)
13:02:21 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:02:21 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:02:21 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.457403, mean: 0.463852, max: 0.498873
13:02:21 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:02:21 DEBUG opendrift.models.physics_methods:1061: min: 3.684503, mean: 3.710246, max: 3.847908
13:02:21 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 3.684503, mean: 3.710246, max: 3.847908
13:02:21 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:02:21 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:02:21 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:02:21 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:02:21 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.086241 m/s - 0.090065 m/s)
13:02:21 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:02:21 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:02:21 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:02:21 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:02:21 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:02:21 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:02:21 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:02:21 INFO opendrift.models.basemodel:2038: 2024-11-10 00:00:00 - step 49 of 71 - 1000 active elements (0 deactivated)
13:02:21 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:02:21 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:02:21 DEBUG opendrift.models.basemodel:2057: 60.74260720045899 <- latitude -> 60.8721305992432
13:02:21 DEBUG opendrift.models.basemodel:2062: 4.274366615104373 <- longitude -> 4.378955702800162
13:02:21 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:02:21 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:02:21 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:02:21 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:02:21 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:02:21 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
13:02:21 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:02:21 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:02:21 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
13:02:21 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-10 00:00:00 (before)
2024-11-10 01:00:00 (after)
13:02:37 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
13:02:37 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:02:37 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:02:37 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:02:37 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:02:37 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:02:37 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 36x35x7) for time before (2024-11-10 00:00:00)
13:02:37 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-10 00:00:00) in space (linearNDFast)
13:02:37 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:02:37 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:02:37 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.72564404064629 and -65.62105497946936 degrees.
13:02:37 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.72564404064629 and -65.62105497946936 degrees.
13:02:37 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:02:37 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:02:37 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:02:37 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:02:37 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:02:37 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:02:37 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:02:37 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:02:37 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:02:37 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:02:37 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:02:37 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:02:37 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:02:37 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:02:37 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
13:02:37 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:02:37 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.302337 (min) -0.0742625 (max)
13:02:37 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.5307 (min) 0.578525 (max)
13:02:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.50327 (min) -0.498946 (max)
13:02:37 DEBUG opendrift.models.basemodel.environment:905: x_wind: -4.34427 (min) -4.15024 (max)
13:02:37 DEBUG opendrift.models.basemodel.environment:905: y_wind: 3.72889 (min) 4.07251 (max)
13:02:37 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -2.94114e-07 (min) 7.92361e-07 (max)
13:02:37 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:02:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:02:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:02:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:02:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:02:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:02:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:02:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:02:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:02:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:02:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:02:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:02:37 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:02:37 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:02:37 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:02:37 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:02:37 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:02:37 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 344.569 (min) 397.43 (max)
13:02:37 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:02:37 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:02:37 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.777335, mean: 0.795110, max: 0.871842
13:02:37 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:02:37 DEBUG opendrift.models.physics_methods:1061: min: 4.803233, mean: 4.857492, max: 5.086845
13:02:37 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 4.803233, mean: 4.857492, max: 5.086845
13:02:37 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:02:37 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:02:37 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:02:37 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:02:37 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.112426 m/s - 0.119064 m/s)
13:02:37 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:02:37 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:02:37 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:02:37 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:02:37 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:02:37 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:02:37 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:02:37 INFO opendrift.models.basemodel:2038: 2024-11-10 01:00:00 - step 50 of 71 - 1000 active elements (0 deactivated)
13:02:37 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:02:37 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:02:37 DEBUG opendrift.models.basemodel:2057: 60.763584413421285 <- latitude -> 60.89345153274641
13:02:37 DEBUG opendrift.models.basemodel:2062: 4.248560671083701 <- longitude -> 4.366974691699769
13:02:37 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:02:37 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:02:37 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:02:37 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:02:37 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:02:37 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
13:02:37 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:02:37 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:02:37 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
13:02:37 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-10 01:00:00 (before)
2024-11-10 02:00:00 (after)
13:02:52 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
13:02:52 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:02:52 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:02:52 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:02:52 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:02:52 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:02:52 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 35x37x7) for time before (2024-11-10 01:00:00)
13:02:52 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-10 01:00:00) in space (linearNDFast)
13:02:52 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:02:52 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:02:52 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.7514499747568 and -65.6330359818241 degrees.
13:02:52 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.7514499747568 and -65.6330359818241 degrees.
13:02:52 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:02:52 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:02:52 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:02:52 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:02:52 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:02:52 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:02:52 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:02:52 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:02:52 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:02:52 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:02:52 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:02:52 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:02:52 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:02:52 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:02:52 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
13:02:52 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:02:52 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.307011 (min) -0.0695753 (max)
13:02:52 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.519474 (min) 0.587971 (max)
13:02:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.332372 (min) -0.327971 (max)
13:02:52 DEBUG opendrift.models.basemodel.environment:905: x_wind: -3.9404 (min) -3.7687 (max)
13:02:52 DEBUG opendrift.models.basemodel.environment:905: y_wind: 4.37055 (min) 4.78488 (max)
13:02:52 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 3.92243e-05 (min) 4.61371e-05 (max)
13:02:52 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:02:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:02:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:02:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:02:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:02:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:02:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:02:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:02:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:02:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:02:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:02:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:02:52 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:02:52 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:02:52 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:02:52 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:02:52 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:02:52 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 353.671 (min) 397.701 (max)
13:02:52 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:02:52 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:02:52 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.820625, mean: 0.858258, max: 0.943258
13:02:52 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:02:52 DEBUG opendrift.models.physics_methods:1061: min: 4.935168, mean: 5.046560, max: 5.291087
13:02:52 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 4.935168, mean: 5.046560, max: 5.291087
13:02:52 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:02:52 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:02:52 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:02:52 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:02:52 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.115514 m/s - 0.123845 m/s)
13:02:52 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:02:52 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:02:52 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:02:52 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:02:52 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:02:52 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:02:52 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:02:52 INFO opendrift.models.basemodel:2038: 2024-11-10 02:00:00 - step 51 of 71 - 1000 active elements (0 deactivated)
13:02:52 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:02:52 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:02:52 DEBUG opendrift.models.basemodel:2057: 60.783675531284665 <- latitude -> 60.91553787979039
13:02:52 DEBUG opendrift.models.basemodel:2062: 4.22314535408221 <- longitude -> 4.357396078761415
13:02:52 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:02:52 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:02:52 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:02:52 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:02:52 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:02:52 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
13:02:52 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:02:52 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:02:52 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
13:02:52 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-10 02:00:00 (before)
2024-11-10 03:00:00 (after)
13:03:08 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
13:03:08 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:03:08 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:03:08 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:03:08 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:03:08 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:03:08 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 35x38x7) for time before (2024-11-10 02:00:00)
13:03:08 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-10 02:00:00) in space (linearNDFast)
13:03:08 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:03:08 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:03:08 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.77686528019801 and -65.64261460422357 degrees.
13:03:08 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.77686528019801 and -65.64261460422357 degrees.
13:03:08 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:03:08 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:03:08 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:03:08 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:03:08 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:03:08 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:03:08 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:03:08 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:03:08 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:03:08 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:03:08 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:03:08 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:03:08 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:03:08 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:03:08 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
13:03:08 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:03:08 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.307698 (min) -0.0901686 (max)
13:03:08 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.486138 (min) 0.579304 (max)
13:03:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.188645 (min) -0.177785 (max)
13:03:08 DEBUG opendrift.models.basemodel.environment:905: x_wind: -3.49986 (min) -3.27516 (max)
13:03:08 DEBUG opendrift.models.basemodel.environment:905: y_wind: 4.84081 (min) 5.60716 (max)
13:03:08 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 3.53213e-05 (min) 3.91874e-05 (max)
13:03:08 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:03:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:03:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:03:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:03:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:03:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:03:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:03:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:03:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:03:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:03:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:03:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:03:08 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:03:08 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:03:08 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:03:08 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:03:08 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:03:08 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 364.796 (min) 397.08 (max)
13:03:08 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:03:08 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:03:08 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.877788, mean: 0.935310, max: 1.037304
13:03:08 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:03:08 DEBUG opendrift.models.physics_methods:1061: min: 5.104161, mean: 5.267949, max: 5.548590
13:03:08 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 5.104161, mean: 5.267949, max: 5.548590
13:03:08 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:03:08 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:03:08 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:03:08 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:03:08 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.119470 m/s - 0.129872 m/s)
13:03:08 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:03:08 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:03:08 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:03:08 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:03:08 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:03:08 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:03:08 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:03:08 INFO opendrift.models.basemodel:2038: 2024-11-10 03:00:00 - step 52 of 71 - 1000 active elements (0 deactivated)
13:03:08 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:03:08 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:03:08 DEBUG opendrift.models.basemodel:2057: 60.8025097192377 <- latitude -> 60.93787544948202
13:03:08 DEBUG opendrift.models.basemodel:2062: 4.198366475438455 <- longitude -> 4.346805835084832
13:03:08 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:03:08 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:03:08 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:03:08 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:03:08 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:03:08 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
13:03:08 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:03:08 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:03:08 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
13:03:08 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-10 03:00:00 (before)
2024-11-10 04:00:00 (after)
13:03:24 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
13:03:24 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:03:24 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:03:24 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:03:24 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:03:24 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:03:24 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 35x39x7) for time before (2024-11-10 03:00:00)
13:03:24 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-10 03:00:00) in space (linearNDFast)
13:03:24 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:03:24 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:03:24 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.80164416280792 and -65.65320483714599 degrees.
13:03:24 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.80164416280792 and -65.65320483714599 degrees.
13:03:24 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:03:24 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:03:24 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:03:24 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:03:24 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:03:24 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:03:24 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:03:24 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:03:24 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:03:24 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:03:24 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:03:24 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:03:24 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:03:24 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:03:24 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
13:03:24 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:03:24 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.339326 (min) -0.121645 (max)
13:03:24 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.444054 (min) 0.548142 (max)
13:03:24 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.0852981 (min) -0.0673332 (max)
13:03:24 DEBUG opendrift.models.basemodel.environment:905: x_wind: -3.44692 (min) -2.47529 (max)
13:03:24 DEBUG opendrift.models.basemodel.environment:905: y_wind: 5.3349 (min) 6.50967 (max)
13:03:24 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 2.33356e-05 (min) 2.48673e-05 (max)
13:03:24 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:03:24 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:03:24 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:03:24 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:03:24 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:03:24 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:03:24 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:03:24 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:03:24 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:03:24 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:03:24 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:03:24 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:03:24 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:03:24 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:03:24 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:03:24 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:03:24 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:03:24 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 345.466 (min) 397.078 (max)
13:03:24 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:03:24 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:03:24 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.992424, mean: 1.086988, max: 1.193171
13:03:24 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:03:24 DEBUG opendrift.models.physics_methods:1061: min: 5.427230, mean: 5.679153, max: 5.950876
13:03:24 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 5.427230, mean: 5.679153, max: 5.950876
13:03:24 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:03:24 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:03:24 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:03:24 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:03:24 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.127031 m/s - 0.139288 m/s)
13:03:24 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:03:24 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:03:24 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:03:24 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:03:24 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:03:24 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:03:24 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:03:24 INFO opendrift.models.basemodel:2038: 2024-11-10 04:00:00 - step 53 of 71 - 1000 active elements (0 deactivated)
13:03:24 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:03:24 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:03:24 DEBUG opendrift.models.basemodel:2057: 60.82030335209991 <- latitude -> 60.95975023317514
13:03:24 DEBUG opendrift.models.basemodel:2062: 4.172531508757488 <- longitude -> 4.334197518330823
13:03:24 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:03:24 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:03:24 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:03:24 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:03:24 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:03:24 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
13:03:24 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:03:24 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:03:24 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
13:03:24 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-10 04:00:00 (before)
2024-11-10 05:00:00 (after)
13:03:40 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
13:03:40 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:03:40 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:03:40 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:03:40 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:03:40 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:03:40 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 35x40x7) for time before (2024-11-10 04:00:00)
13:03:40 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-10 04:00:00) in space (linearNDFast)
13:03:40 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:03:40 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:03:40 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.8274791161702 and -65.66581315111765 degrees.
13:03:40 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.8274791161702 and -65.66581315111765 degrees.
13:03:40 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:03:40 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:03:40 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:03:40 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:03:40 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:03:40 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:03:40 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:03:40 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:03:40 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:03:40 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:03:40 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:03:40 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:03:40 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:03:40 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:03:40 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
13:03:40 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:03:40 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.361991 (min) -0.171214 (max)
13:03:40 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.406417 (min) 0.533012 (max)
13:03:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.0196535 (min) 0.00582949 (max)
13:03:40 DEBUG opendrift.models.basemodel.environment:905: x_wind: -3.24043 (min) -2.78749 (max)
13:03:40 DEBUG opendrift.models.basemodel.environment:905: y_wind: 5.47389 (min) 6.72956 (max)
13:03:40 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 5.03794e-06 (min) 7.33308e-06 (max)
13:03:40 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:03:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:03:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:03:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:03:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:03:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:03:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:03:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:03:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:03:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:03:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:03:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:03:40 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:03:40 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:03:40 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:03:40 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:03:40 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:03:40 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 325.471 (min) 398.016 (max)
13:03:40 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:03:40 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:03:40 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.995091, mean: 1.130783, max: 1.305204
13:03:40 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:03:40 DEBUG opendrift.models.physics_methods:1061: min: 5.434517, mean: 5.791474, max: 6.223989
13:03:40 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 5.434517, mean: 5.791474, max: 6.223989
13:03:40 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:03:40 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:03:40 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:03:40 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:03:40 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.127202 m/s - 0.145681 m/s)
13:03:40 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:03:40 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:03:40 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:03:40 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:03:40 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:03:40 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:03:40 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:03:40 INFO opendrift.models.basemodel:2038: 2024-11-10 05:00:00 - step 54 of 71 - 1000 active elements (0 deactivated)
13:03:40 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:03:40 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:03:40 DEBUG opendrift.models.basemodel:2057: 60.83697053336713 <- latitude -> 60.981316738439105
13:03:40 DEBUG opendrift.models.basemodel:2062: 4.144769204521586 <- longitude -> 4.318577843253933
13:03:40 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:03:40 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:03:40 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:03:40 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:03:40 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:03:40 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
13:03:40 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:03:40 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:03:40 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
13:03:40 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-10 05:00:00 (before)
2024-11-10 06:00:00 (after)
13:03:57 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
13:03:57 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:03:57 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:03:57 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:03:57 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:03:57 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:03:57 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 35x41x7) for time before (2024-11-10 05:00:00)
13:03:57 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-10 05:00:00) in space (linearNDFast)
13:03:57 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:03:57 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:03:57 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.8552414255528 and -65.68143282083503 degrees.
13:03:57 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.8552414255528 and -65.68143282083503 degrees.
13:03:57 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:03:57 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:03:57 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:03:57 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:03:57 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:03:57 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:03:57 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:03:57 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:03:57 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:03:57 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:03:57 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:03:57 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:03:57 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:03:57 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:03:57 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
13:03:57 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:03:57 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.382143 (min) -0.197435 (max)
13:03:57 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.385887 (min) 0.576221 (max)
13:03:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.0250064 (min) 0.00581226 (max)
13:03:57 DEBUG opendrift.models.basemodel.environment:905: x_wind: -2.92195 (min) -2.32674 (max)
13:03:57 DEBUG opendrift.models.basemodel.environment:905: y_wind: 6.04461 (min) 7.37847 (max)
13:03:57 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -1.53099e-05 (min) -1.33424e-05 (max)
13:03:57 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:03:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:03:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:03:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:03:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:03:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:03:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:03:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:03:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:03:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:03:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:03:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:03:57 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:03:57 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:03:57 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:03:57 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:03:57 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:03:57 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 309.036 (min) 397.734 (max)
13:03:57 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:03:57 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:03:57 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.108848, mean: 1.295304, max: 1.472446
13:03:57 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:03:57 DEBUG opendrift.models.physics_methods:1061: min: 5.736746, mean: 6.198543, max: 6.610727
13:03:57 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 5.736746, mean: 6.198543, max: 6.610727
13:03:57 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:03:57 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:03:57 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:03:57 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:03:57 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.134276 m/s - 0.154733 m/s)
13:03:57 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:03:57 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:03:57 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:03:57 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:03:57 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:03:57 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:03:57 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:03:57 INFO opendrift.models.basemodel:2038: 2024-11-10 06:00:00 - step 55 of 71 - 1000 active elements (0 deactivated)
13:03:57 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:03:57 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:03:57 DEBUG opendrift.models.basemodel:2057: 60.85334300184847 <- latitude -> 61.004698377897775
13:03:57 DEBUG opendrift.models.basemodel:2062: 4.11704709129032 <- longitude -> 4.301633114259536
13:03:57 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:03:57 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:03:57 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:03:57 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:03:57 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:03:57 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
13:03:57 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:03:57 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:03:57 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
13:03:57 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-10 06:00:00 (before)
2024-11-10 07:00:00 (after)
13:04:17 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
13:04:17 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:04:17 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:04:17 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:04:17 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:04:17 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:04:17 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 36x42x7) for time before (2024-11-10 06:00:00)
13:04:17 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-10 06:00:00) in space (linearNDFast)
13:04:17 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:04:17 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:04:17 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.88296353340398 and -65.6983775396897 degrees.
13:04:17 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.88296353340398 and -65.6983775396897 degrees.
13:04:17 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:04:17 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:04:17 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:04:17 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:04:17 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:04:17 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:04:17 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:04:17 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:04:17 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:04:17 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:04:17 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:04:17 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:04:17 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:04:17 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:04:17 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
13:04:17 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:04:17 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.405368 (min) -0.21293 (max)
13:04:17 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.386148 (min) 0.623328 (max)
13:04:17 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.109915 (min) -0.0761025 (max)
13:04:17 DEBUG opendrift.models.basemodel.environment:905: x_wind: -3.57848 (min) -3.00492 (max)
13:04:17 DEBUG opendrift.models.basemodel.environment:905: y_wind: 6.01952 (min) 7.52565 (max)
13:04:17 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -3.44484e-05 (min) -3.30053e-05 (max)
13:04:17 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:04:17 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:04:17 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:04:17 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:04:17 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:04:17 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:04:17 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:04:17 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:04:17 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:04:17 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:04:17 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:04:17 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:04:17 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:04:17 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:04:17 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:04:17 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:04:17 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:04:17 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 300.513 (min) 398.836 (max)
13:04:17 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:04:17 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:04:17 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.206388, mean: 1.348185, max: 1.615358
13:04:17 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:04:17 DEBUG opendrift.models.physics_methods:1061: min: 5.983744, mean: 6.323028, max: 6.924111
13:04:17 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 5.983744, mean: 6.323028, max: 6.924111
13:04:17 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:04:17 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:04:17 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:04:17 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:04:17 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.140057 m/s - 0.162068 m/s)
13:04:17 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:04:17 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:04:17 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:04:17 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:04:17 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:04:17 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:04:17 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:04:17 INFO opendrift.models.basemodel:2038: 2024-11-10 07:00:00 - step 56 of 71 - 1000 active elements (0 deactivated)
13:04:17 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:04:17 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:04:17 DEBUG opendrift.models.basemodel:2057: 60.86970752586518 <- latitude -> 61.02951858996663
13:04:17 DEBUG opendrift.models.basemodel:2062: 4.088166364905037 <- longitude -> 4.282783054126833
13:04:17 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:04:17 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:04:17 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:04:17 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:04:17 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:04:17 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
13:04:17 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:04:17 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:04:17 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
13:04:17 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-10 07:00:00 (before)
2024-11-10 08:00:00 (after)
13:04:38 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
13:04:38 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:04:38 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:04:38 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:04:38 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:04:38 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:04:38 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['ocean_vertical_diffusivity', 'x_sea_water_velocity', 'upward_sea_water_velocity', 'y_sea_water_velocity']
13:04:38 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 37x43x7) for time before (2024-11-10 07:00:00)
13:04:38 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-10 07:00:00) in space (linearNDFast)
13:04:38 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:04:38 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:04:38 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.91184425628455 and -65.71722760962481 degrees.
13:04:38 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.91184425628455 and -65.71722760962481 degrees.
13:04:38 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:04:38 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:04:38 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:04:38 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:04:38 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:04:38 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:04:38 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:04:38 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:04:38 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:04:38 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:04:38 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:04:38 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:04:38 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:04:38 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:04:38 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
13:04:38 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:04:38 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.434351 (min) -0.197771 (max)
13:04:38 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.397597 (min) 0.679118 (max)
13:04:38 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.253805 (min) -0.21847 (max)
13:04:38 DEBUG opendrift.models.basemodel.environment:905: x_wind: -3.17742 (min) -2.89207 (max)
13:04:38 DEBUG opendrift.models.basemodel.environment:905: y_wind: 7.61479 (min) 8.25555 (max)
13:04:38 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -4.73405e-05 (min) -4.57682e-05 (max)
13:04:38 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:04:38 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:04:38 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:04:38 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:04:38 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:04:38 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:04:38 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:04:38 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:04:38 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:04:38 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:04:38 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:04:38 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:04:38 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:04:38 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:04:38 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:04:38 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:04:38 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:04:38 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 298.842 (min) 397.27 (max)
13:04:38 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:04:38 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:04:38 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.674792, mean: 1.811489, max: 1.904858
13:04:38 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:04:38 DEBUG opendrift.models.physics_methods:1061: min: 7.050340, mean: 7.331899, max: 7.519014
13:04:38 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.050340, mean: 7.331899, max: 7.519014
13:04:38 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:04:38 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:04:38 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:04:38 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:04:38 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.165022 m/s - 0.175992 m/s)
13:04:38 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:04:38 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:04:38 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:04:38 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:04:38 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:04:38 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:04:38 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:04:38 INFO opendrift.models.basemodel:2038: 2024-11-10 08:00:00 - step 57 of 71 - 1000 active elements (0 deactivated)
13:04:38 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:04:38 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:04:38 DEBUG opendrift.models.basemodel:2057: 60.887797670869155 <- latitude -> 61.05661720353575
13:04:38 DEBUG opendrift.models.basemodel:2062: 4.056745807752672 <- longitude -> 4.265383013361017
13:04:38 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:04:38 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:04:38 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:04:38 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:04:38 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:04:38 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
13:04:38 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:04:38 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:04:38 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
13:04:38 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-10 08:00:00 (before)
2024-11-10 09:00:00 (after)
13:04:59 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
13:04:59 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:04:59 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:04:59 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:04:59 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:04:59 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:04:59 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['ocean_vertical_diffusivity', 'x_sea_water_velocity', 'upward_sea_water_velocity', 'y_sea_water_velocity']
13:04:59 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 37x44x7) for time before (2024-11-10 08:00:00)
13:04:59 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-10 08:00:00) in space (linearNDFast)
13:04:59 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:04:59 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:04:59 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.94326480402017 and -65.73462763763045 degrees.
13:04:59 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.94326480402017 and -65.73462763763045 degrees.
13:04:59 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:04:59 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:04:59 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:04:59 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:04:59 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:04:59 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:04:59 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:04:59 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:04:59 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:04:59 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:04:59 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:04:59 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:04:59 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:04:59 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:04:59 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
13:04:59 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:04:59 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.466382 (min) -0.202425 (max)
13:04:59 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.370761 (min) 0.758919 (max)
13:04:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.423295 (min) -0.391464 (max)
13:04:59 DEBUG opendrift.models.basemodel.environment:905: x_wind: -2.97017 (min) -2.41428 (max)
13:04:59 DEBUG opendrift.models.basemodel.environment:905: y_wind: 8.50281 (min) 8.86848 (max)
13:04:59 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -4.8438e-05 (min) -4.69894e-05 (max)
13:04:59 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:04:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:04:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:04:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:04:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:04:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:04:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:04:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:04:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:04:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:04:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:04:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:04:59 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:04:59 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:04:59 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:04:59 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:04:59 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:04:59 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 298.582 (min) 393.582 (max)
13:04:59 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:04:59 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:04:59 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.921914, mean: 2.045317, max: 2.151809
13:04:59 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:04:59 DEBUG opendrift.models.physics_methods:1061: min: 7.552602, mean: 7.790858, max: 7.991558
13:04:59 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.552602, mean: 7.790858, max: 7.991558
13:04:59 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:04:59 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:04:59 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:04:59 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:04:59 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.176779 m/s - 0.187053 m/s)
13:04:59 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:04:59 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:04:59 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:04:59 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:04:59 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:04:59 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:04:59 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:04:59 INFO opendrift.models.basemodel:2038: 2024-11-10 09:00:00 - step 58 of 71 - 1000 active elements (0 deactivated)
13:04:59 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:04:59 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:04:59 DEBUG opendrift.models.basemodel:2057: 60.90609691514527 <- latitude -> 61.08632571112769
13:04:59 DEBUG opendrift.models.basemodel:2062: 4.025048049596934 <- longitude -> 4.248753564559257
13:04:59 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:04:59 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:04:59 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:04:59 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:04:59 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:04:59 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
13:04:59 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:04:59 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:04:59 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
13:04:59 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-10 09:00:00 (before)
2024-11-10 10:00:00 (after)
13:05:20 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
13:05:20 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:05:20 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:05:20 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:05:20 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:05:20 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:05:20 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['ocean_vertical_diffusivity', 'x_sea_water_velocity', 'upward_sea_water_velocity', 'y_sea_water_velocity']
13:05:20 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 38x46x7) for time before (2024-11-10 09:00:00)
13:05:20 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-10 09:00:00) in space (linearNDFast)
13:05:20 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:05:20 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:05:20 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.9749625609289 and -65.75125707859357 degrees.
13:05:20 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.9749625609289 and -65.75125707859357 degrees.
13:05:20 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:05:20 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:05:20 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:05:20 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:05:20 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:05:20 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:05:20 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:05:20 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:05:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:05:20 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:05:20 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:05:20 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:05:20 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:05:20 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:05:20 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
13:05:20 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:05:20 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.478243 (min) -0.242875 (max)
13:05:20 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.383516 (min) 0.842651 (max)
13:05:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.56361 (min) -0.539919 (max)
13:05:20 DEBUG opendrift.models.basemodel.environment:905: x_wind: -3.44091 (min) -2.65335 (max)
13:05:20 DEBUG opendrift.models.basemodel.environment:905: y_wind: 9.22496 (min) 9.52795 (max)
13:05:20 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -3.55178e-05 (min) -3.23727e-05 (max)
13:05:20 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:05:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:05:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:05:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:05:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:05:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:05:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:05:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:05:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:05:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:05:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:05:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:05:20 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:05:20 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:05:20 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:05:20 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:05:20 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:05:20 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 298.398 (min) 384.928 (max)
13:05:20 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:05:20 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:05:20 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.275950, mean: 2.360772, max: 2.506793
13:05:20 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:05:20 DEBUG opendrift.models.physics_methods:1061: min: 8.218848, mean: 8.369466, max: 8.625589
13:05:20 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.218848, mean: 8.369466, max: 8.625589
13:05:20 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:05:20 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:05:20 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:05:20 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:05:20 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.192373 m/s - 0.201893 m/s)
13:05:20 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:05:20 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:05:20 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:05:20 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:05:20 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:05:20 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:05:20 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:05:20 INFO opendrift.models.basemodel:2038: 2024-11-10 10:00:00 - step 59 of 71 - 1000 active elements (0 deactivated)
13:05:20 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:05:20 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:05:20 DEBUG opendrift.models.basemodel:2057: 60.92446054187955 <- latitude -> 61.118924507582705
13:05:20 DEBUG opendrift.models.basemodel:2062: 3.9941647547433137 <- longitude -> 4.229112923471409
13:05:20 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:05:20 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:05:20 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:05:20 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:05:20 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:05:20 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
13:05:20 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:05:20 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:05:20 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
13:05:20 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-10 10:00:00 (before)
2024-11-10 11:00:00 (after)
13:05:39 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
13:05:39 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:05:39 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:05:39 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:05:39 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:05:39 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:05:39 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['ocean_vertical_diffusivity', 'x_sea_water_velocity', 'upward_sea_water_velocity', 'y_sea_water_velocity']
13:05:39 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 40x48x7) for time before (2024-11-10 10:00:00)
13:05:39 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-10 10:00:00) in space (linearNDFast)
13:05:39 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:05:39 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:05:39 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -66.00584583813576 and -65.77089772161224 degrees.
13:05:39 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -66.00584583813576 and -65.77089772161224 degrees.
13:05:39 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:05:39 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:05:39 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:05:39 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:05:39 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:05:39 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:05:39 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:05:39 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:05:39 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:05:39 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:05:39 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:05:39 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:05:39 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:05:39 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:05:39 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
13:05:39 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:05:39 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.47014 (min) -0.297511 (max)
13:05:39 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.438075 (min) 0.918069 (max)
13:05:39 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.624918 (min) -0.603688 (max)
13:05:39 DEBUG opendrift.models.basemodel.environment:905: x_wind: -1.57918 (min) 0.548813 (max)
13:05:39 DEBUG opendrift.models.basemodel.environment:905: y_wind: 10.1783 (min) 11.4028 (max)
13:05:39 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -4.01795e-06 (min) -2.86348e-06 (max)
13:05:39 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:05:39 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:05:39 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:05:39 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:05:39 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:05:39 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:05:39 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:05:39 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:05:39 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:05:39 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:05:39 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:05:39 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:05:39 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:05:39 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:05:39 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:05:39 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:05:39 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:05:39 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 298.298 (min) 370.363 (max)
13:05:39 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:05:39 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:05:39 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.609869, mean: 3.005117, max: 3.199599
13:05:39 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:05:39 DEBUG opendrift.models.physics_methods:1061: min: 8.801140, mean: 9.440579, max: 9.744898
13:05:39 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.801140, mean: 9.440579, max: 9.744898
13:05:39 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:05:39 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:05:39 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:05:39 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:05:39 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.206002 m/s - 0.228092 m/s)
13:05:39 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:05:39 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:05:39 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:05:39 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:05:39 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:05:39 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:05:39 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:05:39 INFO opendrift.models.basemodel:2038: 2024-11-10 11:00:00 - step 60 of 71 - 1000 active elements (0 deactivated)
13:05:39 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:05:39 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:05:39 DEBUG opendrift.models.basemodel:2057: 60.945188934530165 <- latitude -> 61.15410616703036
13:05:39 DEBUG opendrift.models.basemodel:2062: 3.9742172335861956 <- longitude -> 4.205853446610751
13:05:39 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:05:39 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:05:39 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:05:39 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:05:39 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:05:39 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
13:05:39 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:05:39 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:05:39 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
13:05:39 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-10 11:00:00 (before)
2024-11-10 12:00:00 (after)
13:05:59 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
13:05:59 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:05:59 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:05:59 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:05:59 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:05:59 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:05:59 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 42x48x7) for time before (2024-11-10 11:00:00)
13:05:59 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-10 11:00:00) in space (linearNDFast)
13:05:59 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:05:59 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:05:59 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -66.0257933500325 and -65.79415719223354 degrees.
13:05:59 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -66.0257933500325 and -65.79415719223354 degrees.
13:05:59 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:05:59 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:05:59 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:05:59 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:05:59 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:05:59 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:05:59 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:05:59 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:05:59 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:05:59 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:05:59 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:05:59 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:05:59 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:05:59 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:05:59 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
13:05:59 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:05:59 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.506883 (min) -0.249817 (max)
13:05:59 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.528982 (min) 0.991019 (max)
13:05:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.584861 (min) -0.561189 (max)
13:05:59 DEBUG opendrift.models.basemodel.environment:905: x_wind: -2.23314 (min) 0.248586 (max)
13:05:59 DEBUG opendrift.models.basemodel.environment:905: y_wind: 10.1474 (min) 11.2294 (max)
13:05:59 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 2.37958e-05 (min) 2.63193e-05 (max)
13:05:59 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:05:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:05:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:05:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:05:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:05:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:05:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:05:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:05:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:05:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:05:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:05:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:05:59 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:05:59 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:05:59 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:05:59 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:05:59 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:05:59 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 298.508 (min) 351.428 (max)
13:05:59 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:05:59 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:05:59 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.533069, mean: 2.934748, max: 3.140423
13:05:59 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:05:59 DEBUG opendrift.models.physics_methods:1061: min: 8.670679, mean: 9.329673, max: 9.654363
13:05:59 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.670679, mean: 9.329673, max: 9.654363
13:05:59 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:05:59 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:05:59 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:05:59 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:05:59 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.202949 m/s - 0.225973 m/s)
13:05:59 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:05:59 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:05:59 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:05:59 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:05:59 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:05:59 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:05:59 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:05:59 INFO opendrift.models.basemodel:2038: 2024-11-10 12:00:00 - step 61 of 71 - 1000 active elements (0 deactivated)
13:05:59 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:05:59 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:05:59 DEBUG opendrift.models.basemodel:2057: 60.9690534579575 <- latitude -> 61.19096260414093
13:05:59 DEBUG opendrift.models.basemodel:2062: 3.957446461364956 <- longitude -> 4.177171156708712
13:05:59 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:05:59 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:05:59 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:05:59 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:05:59 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:05:59 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
13:05:59 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:05:59 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:05:59 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
13:05:59 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-10 12:00:00 (before)
2024-11-10 13:00:00 (after)
13:06:20 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
13:06:20 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:06:20 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:06:20 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:06:20 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:06:20 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:06:20 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 44x48x7) for time before (2024-11-10 12:00:00)
13:06:20 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-10 12:00:00) in space (linearNDFast)
13:06:20 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:06:20 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:06:20 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -66.04256410035035 and -65.82283945924641 degrees.
13:06:20 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -66.04256410035035 and -65.82283945924641 degrees.
13:06:20 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:06:20 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:06:20 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:06:20 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:06:20 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:06:20 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:06:20 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:06:20 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:06:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:06:20 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:06:20 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:06:20 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:06:20 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:06:20 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:06:20 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
13:06:20 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:06:20 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.509718 (min) -0.209267 (max)
13:06:20 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.611391 (min) 1.05567 (max)
13:06:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.46003 (min) -0.425145 (max)
13:06:20 DEBUG opendrift.models.basemodel.environment:905: x_wind: -2.72072 (min) -1.65455 (max)
13:06:20 DEBUG opendrift.models.basemodel.environment:905: y_wind: 10.4086 (min) 10.9283 (max)
13:06:20 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 4.17268e-05 (min) 4.5974e-05 (max)
13:06:20 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:06:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:06:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:06:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:06:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:06:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:06:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:06:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:06:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:06:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:06:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:06:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:06:20 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:06:20 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:06:20 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:06:20 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:06:20 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:06:20 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 298.84 (min) 328.217 (max)
13:06:20 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:06:20 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:06:20 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.843191, mean: 2.959664, max: 3.005256
13:06:20 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:06:20 DEBUG opendrift.models.physics_methods:1061: min: 9.186130, mean: 9.372172, max: 9.444312
13:06:20 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 9.186130, mean: 9.372172, max: 9.444312
13:06:20 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:06:20 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:06:20 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:06:20 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:06:20 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.215013 m/s - 0.221056 m/s)
13:06:20 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:06:20 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:06:20 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:06:20 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:06:20 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:06:20 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:06:20 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:06:20 INFO opendrift.models.basemodel:2038: 2024-11-10 13:00:00 - step 62 of 71 - 1000 active elements (0 deactivated)
13:06:20 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:06:20 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:06:20 DEBUG opendrift.models.basemodel:2057: 60.99553719974084 <- latitude -> 61.22953749342277
13:06:20 DEBUG opendrift.models.basemodel:2062: 3.9412071979002663 <- longitude -> 4.145994099556256
13:06:20 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:06:20 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:06:20 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:06:20 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:06:20 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:06:20 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
13:06:20 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:06:20 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:06:20 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
13:06:20 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-10 13:00:00 (before)
2024-11-10 14:00:00 (after)
13:06:40 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
13:06:40 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:06:40 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:06:40 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:06:40 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:06:40 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:06:40 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 46x48x7) for time before (2024-11-10 13:00:00)
13:06:40 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-10 13:00:00) in space (linearNDFast)
13:06:40 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:06:40 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:06:40 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -66.05880335016484 and -65.85401651983346 degrees.
13:06:40 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -66.05880335016484 and -65.85401651983346 degrees.
13:06:40 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:06:40 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:06:40 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:06:40 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:06:40 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:06:40 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:06:40 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:06:40 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:06:40 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:06:40 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:06:40 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:06:40 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:06:40 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:06:40 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:06:40 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
13:06:40 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:06:40 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.490226 (min) -0.166551 (max)
13:06:40 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.64232 (min) 1.07389 (max)
13:06:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.284362 (min) -0.243706 (max)
13:06:40 DEBUG opendrift.models.basemodel.environment:905: x_wind: -3.2849 (min) -2.39658 (max)
13:06:40 DEBUG opendrift.models.basemodel.environment:905: y_wind: 10.6134 (min) 11.3866 (max)
13:06:40 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 4.83056e-05 (min) 5.09463e-05 (max)
13:06:40 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:06:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:06:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:06:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:06:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:06:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:06:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:06:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:06:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:06:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:06:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:06:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:06:40 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:06:40 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:06:40 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:06:40 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:06:40 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:06:40 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 299.238 (min) 309.543 (max)
13:06:40 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:06:40 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:06:40 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.971092, mean: 3.145820, max: 3.432700
13:06:40 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:06:40 DEBUG opendrift.models.physics_methods:1061: min: 9.390476, mean: 9.659591, max: 10.093633
13:06:40 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 9.390476, mean: 9.659591, max: 10.093633
13:06:40 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:06:40 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:06:40 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:06:40 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:06:40 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.219796 m/s - 0.236255 m/s)
13:06:40 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:06:40 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:06:40 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:06:40 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:06:40 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:06:40 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:06:40 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:06:40 INFO opendrift.models.basemodel:2038: 2024-11-10 14:00:00 - step 63 of 71 - 1000 active elements (0 deactivated)
13:06:40 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:06:40 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:06:40 DEBUG opendrift.models.basemodel:2057: 61.023560800498416 <- latitude -> 61.26877740784066
13:06:40 DEBUG opendrift.models.basemodel:2062: 3.926795535899368 <- longitude -> 4.1122663035756934
13:06:40 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:06:40 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:06:40 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:06:40 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:06:40 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:06:40 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
13:06:40 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:06:40 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:06:40 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
13:06:40 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-10 14:00:00 (before)
2024-11-10 15:00:00 (after)
13:07:11 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
13:07:11 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:07:11 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:07:11 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:07:11 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:07:11 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:07:11 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 48x47x7) for time before (2024-11-10 14:00:00)
13:07:11 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-10 14:00:00) in space (linearNDFast)
13:07:11 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:07:11 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:07:11 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -66.07321501124471 and -65.88774431913585 degrees.
13:07:11 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -66.07321501124471 and -65.88774431913585 degrees.
13:07:11 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:07:11 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:07:11 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:07:11 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:07:11 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:07:11 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:07:11 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:07:11 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:07:11 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:07:11 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:07:11 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:07:11 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:07:11 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:07:11 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:07:11 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
13:07:11 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:07:11 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.46908 (min) -0.0924622 (max)
13:07:11 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.675287 (min) 1.06766 (max)
13:07:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.11227 (min) -0.0618034 (max)
13:07:11 DEBUG opendrift.models.basemodel.environment:905: x_wind: -1.92793 (min) -0.732268 (max)
13:07:11 DEBUG opendrift.models.basemodel.environment:905: y_wind: 10.0892 (min) 10.558 (max)
13:07:11 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 4.33153e-05 (min) 4.79609e-05 (max)
13:07:11 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:07:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:07:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:07:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:07:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:07:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:07:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:07:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:07:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:07:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:07:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:07:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:07:11 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:07:11 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:07:11 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:07:11 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:07:11 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:07:11 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 299.37 (min) 304.66 (max)
13:07:11 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:07:11 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:07:11 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.579598, mean: 2.616541, max: 2.804549
13:07:11 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:07:11 DEBUG opendrift.models.physics_methods:1061: min: 8.749951, mean: 8.812108, max: 9.123492
13:07:11 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.749951, mean: 8.812108, max: 9.123492
13:07:11 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:07:11 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:07:11 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:07:11 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:07:11 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.204804 m/s - 0.213547 m/s)
13:07:11 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:07:11 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:07:11 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:07:11 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:07:11 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:07:11 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:07:11 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:07:11 INFO opendrift.models.basemodel:2038: 2024-11-10 15:00:00 - step 64 of 71 - 1000 active elements (0 deactivated)
13:07:11 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:07:11 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:07:11 DEBUG opendrift.models.basemodel:2057: 61.05189343749254 <- latitude -> 61.30637172008153
13:07:11 DEBUG opendrift.models.basemodel:2062: 3.9187601329528143 <- longitude -> 4.080443439187074
13:07:11 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:07:11 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:07:11 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:07:11 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:07:11 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:07:11 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
13:07:11 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:07:11 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:07:11 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
13:07:11 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-10 15:00:00 (before)
2024-11-10 16:00:00 (after)
13:07:29 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
13:07:29 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:07:29 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:07:29 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:07:29 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:07:29 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:07:29 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 50x46x7) for time before (2024-11-10 15:00:00)
13:07:29 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-10 15:00:00) in space (linearNDFast)
13:07:29 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:07:29 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:07:29 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -66.08125039796955 and -65.91956717064365 degrees.
13:07:29 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -66.08125039796955 and -65.91956717064365 degrees.
13:07:29 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:07:29 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:07:29 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:07:29 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:07:29 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:07:29 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:07:29 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:07:29 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:07:29 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:07:29 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:07:29 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:07:29 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:07:29 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:07:29 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:07:29 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
13:07:29 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:07:29 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.454557 (min) -0.012165 (max)
13:07:29 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.693732 (min) 1.07846 (max)
13:07:29 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0.0314394 (min) 0.0888321 (max)
13:07:29 DEBUG opendrift.models.basemodel.environment:905: x_wind: 1.11147 (min) 1.28215 (max)
13:07:29 DEBUG opendrift.models.basemodel.environment:905: y_wind: 10.902 (min) 11.1096 (max)
13:07:29 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 3.28826e-05 (min) 3.61285e-05 (max)
13:07:29 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:07:29 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:07:29 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:07:29 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:07:29 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:07:29 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:07:29 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:07:29 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:07:29 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:07:29 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:07:29 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:07:29 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:07:29 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:07:29 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:07:29 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:07:29 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:07:29 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:07:29 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 299.444 (min) 305.21 (max)
13:07:29 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:07:29 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:07:29 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.954187, mean: 2.999976, max: 3.067017
13:07:29 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:07:29 DEBUG opendrift.models.physics_methods:1061: min: 9.363723, mean: 9.435901, max: 9.540863
13:07:29 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 9.363723, mean: 9.435901, max: 9.540863
13:07:29 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:07:29 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:07:29 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:07:29 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:07:29 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.219170 m/s - 0.223316 m/s)
13:07:29 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:07:29 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:07:29 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:07:29 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:07:29 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:07:29 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:07:29 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:07:29 INFO opendrift.models.basemodel:2038: 2024-11-10 16:00:00 - step 65 of 71 - 1000 active elements (0 deactivated)
13:07:29 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:07:29 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:07:29 DEBUG opendrift.models.basemodel:2057: 61.08148115516268 <- latitude -> 61.34245962343137
13:07:29 DEBUG opendrift.models.basemodel:2062: 3.910424248835821 <- longitude -> 4.052263204031803
13:07:29 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:07:29 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:07:29 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:07:29 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:07:29 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:07:29 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
13:07:29 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:07:29 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:07:29 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
13:07:29 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-10 16:00:00 (before)
2024-11-10 17:00:00 (after)
13:07:47 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
13:07:47 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:07:47 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:07:47 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:07:47 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:07:47 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:07:47 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 52x45x7) for time before (2024-11-10 16:00:00)
13:07:47 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-10 16:00:00) in space (linearNDFast)
13:07:47 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:07:47 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:07:47 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -66.08958630989041 and -65.94774740144443 degrees.
13:07:47 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -66.08958630989041 and -65.94774740144443 degrees.
13:07:47 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:07:47 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:07:47 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:07:47 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:07:47 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:07:47 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:07:47 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:07:47 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:07:47 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:07:47 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:07:47 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:07:47 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:07:47 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:07:47 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:07:47 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
13:07:47 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:07:47 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.439745 (min) 0.0523898 (max)
13:07:47 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.694097 (min) 1.08283 (max)
13:07:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0.131021 (min) 0.190777 (max)
13:07:47 DEBUG opendrift.models.basemodel.environment:905: x_wind: 0.787557 (min) 1.32351 (max)
13:07:47 DEBUG opendrift.models.basemodel.environment:905: y_wind: 11.1603 (min) 11.5367 (max)
13:07:47 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 1.67514e-05 (min) 1.82504e-05 (max)
13:07:47 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:07:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:07:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:07:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:07:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:07:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:07:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:07:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:07:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:07:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:07:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:07:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:07:47 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:07:47 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:07:47 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:07:47 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:07:47 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:07:47 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 299.441 (min) 306.114 (max)
13:07:47 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:07:47 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:07:47 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.079369, mean: 3.153182, max: 3.303133
13:07:47 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:07:47 DEBUG opendrift.models.physics_methods:1061: min: 9.560057, mean: 9.673305, max: 9.901308
13:07:47 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 9.560057, mean: 9.673305, max: 9.901308
13:07:47 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:07:47 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:07:47 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:07:47 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:07:47 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.223766 m/s - 0.231753 m/s)
13:07:47 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:07:47 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:07:47 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:07:47 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:07:47 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:07:47 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:07:47 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:07:47 INFO opendrift.models.basemodel:2038: 2024-11-10 17:00:00 - step 66 of 71 - 1000 active elements (0 deactivated)
13:07:47 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:07:47 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:07:47 DEBUG opendrift.models.basemodel:2057: 61.1113373166241 <- latitude -> 61.37610453611134
13:07:47 DEBUG opendrift.models.basemodel:2062: 3.9022006291057845 <- longitude -> 4.02475803808476
13:07:47 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:07:47 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:07:47 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:07:47 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:07:47 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:07:47 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
13:07:47 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:07:47 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:07:47 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
13:07:47 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-10 17:00:00 (before)
2024-11-10 18:00:00 (after)
13:08:04 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
13:08:04 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:08:04 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:08:04 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:08:04 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:08:04 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:08:04 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 53x43x7) for time before (2024-11-10 17:00:00)
13:08:04 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-10 17:00:00) in space (linearNDFast)
13:08:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:08:04 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:08:04 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -66.09780991587654 and -65.97525255439871 degrees.
13:08:04 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -66.09780991587654 and -65.97525255439871 degrees.
13:08:04 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:08:04 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:08:04 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:08:04 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:08:04 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:08:04 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:08:04 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:08:04 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:08:04 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:08:04 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:08:04 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:08:04 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:08:04 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:08:04 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:08:04 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
13:08:04 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:08:04 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.415241 (min) 0.0821013 (max)
13:08:04 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.688747 (min) 1.08458 (max)
13:08:04 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0.157184 (min) 0.219303 (max)
13:08:04 DEBUG opendrift.models.basemodel.environment:905: x_wind: -0.0697401 (min) 0.459563 (max)
13:08:04 DEBUG opendrift.models.basemodel.environment:905: y_wind: 11.8032 (min) 12.7978 (max)
13:08:04 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -6.6056e-06 (min) -5.30658e-06 (max)
13:08:04 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:08:04 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:08:04 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:08:04 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:08:04 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:08:04 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:08:04 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:08:04 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:08:04 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:08:04 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:08:04 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:08:04 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:08:04 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:08:04 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:08:04 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:08:04 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:08:04 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:08:04 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 299.366 (min) 303.139 (max)
13:08:04 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:08:04 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:08:04 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.432317, mean: 3.620797, max: 4.029220
13:08:04 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:08:04 DEBUG opendrift.models.physics_methods:1061: min: 10.093070, mean: 10.364195, max: 10.935536
13:08:04 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 10.093070, mean: 10.364195, max: 10.935536
13:08:04 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:08:04 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:08:04 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:08:04 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:08:04 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.236241 m/s - 0.255960 m/s)
13:08:04 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:08:04 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:08:04 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:08:04 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:08:04 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:08:04 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:08:04 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:08:04 INFO opendrift.models.basemodel:2038: 2024-11-10 18:00:00 - step 67 of 71 - 1000 active elements (0 deactivated)
13:08:04 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:08:04 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:08:04 DEBUG opendrift.models.basemodel:2057: 61.143848921661686 <- latitude -> 61.40598264748633
13:08:04 DEBUG opendrift.models.basemodel:2062: 3.89492153636468 <- longitude -> 3.996918721436601
13:08:04 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:08:04 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:08:04 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:08:04 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:08:04 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:08:04 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
13:08:04 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:08:04 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:08:04 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
13:08:04 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-10 18:00:00 (before)
2024-11-10 19:00:00 (after)
13:08:23 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
13:08:23 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:08:23 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:08:23 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:08:23 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:08:23 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:08:23 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 53x41x7) for time before (2024-11-10 18:00:00)
13:08:23 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-10 18:00:00) in space (linearNDFast)
13:08:23 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:08:23 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:08:23 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -66.10508900521386 and -66.00309186330176 degrees.
13:08:23 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -66.10508900521386 and -66.00309186330176 degrees.
13:08:23 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:08:23 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:08:23 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:08:23 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:08:23 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:08:23 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:08:23 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:08:23 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:08:23 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:08:23 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:08:23 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:08:23 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:08:23 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:08:23 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:08:23 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
13:08:23 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:08:23 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.426519 (min) 0.0932631 (max)
13:08:23 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.573039 (min) 1.07378 (max)
13:08:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0.0929332 (min) 0.150699 (max)
13:08:23 DEBUG opendrift.models.basemodel.environment:905: x_wind: -0.643668 (min) 0.240339 (max)
13:08:23 DEBUG opendrift.models.basemodel.environment:905: y_wind: 12.2805 (min) 12.68 (max)
13:08:23 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -3.36449e-05 (min) -3.20631e-05 (max)
13:08:23 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:08:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:08:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:08:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:08:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:08:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:08:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:08:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:08:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:08:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:08:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:08:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:08:23 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:08:23 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:08:23 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:08:23 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:08:23 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:08:23 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 299.248 (min) 303.5 (max)
13:08:23 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:08:23 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:08:23 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.710181, mean: 3.869730, max: 3.956568
13:08:23 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:08:23 DEBUG opendrift.models.physics_methods:1061: min: 10.493663, mean: 10.716239, max: 10.836497
13:08:23 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 10.493663, mean: 10.716239, max: 10.836497
13:08:23 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:08:23 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:08:23 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:08:23 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:08:23 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.245618 m/s - 0.253642 m/s)
13:08:23 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:08:23 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:08:23 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:08:23 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:08:23 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:08:23 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:08:23 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:08:23 INFO opendrift.models.basemodel:2038: 2024-11-10 19:00:00 - step 68 of 71 - 1000 active elements (0 deactivated)
13:08:23 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:08:23 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:08:23 DEBUG opendrift.models.basemodel:2057: 61.17659072499885 <- latitude -> 61.432654489933796
13:08:23 DEBUG opendrift.models.basemodel:2062: 3.8893402818900227 <- longitude -> 3.9675280848739476
13:08:23 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:08:23 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:08:23 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:08:23 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:08:23 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:08:23 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
13:08:23 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:08:23 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:08:23 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
13:08:23 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-10 19:00:00 (before)
2024-11-10 20:00:00 (after)
13:08:44 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
13:08:44 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:08:44 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:08:44 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:08:44 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:08:44 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:08:44 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 54x39x7) for time before (2024-11-10 19:00:00)
13:08:44 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-10 19:00:00) in space (linearNDFast)
13:08:44 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:08:44 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:08:44 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -66.11067025411627 and -66.0324824912777 degrees.
13:08:44 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -66.11067025411627 and -66.0324824912777 degrees.
13:08:44 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:08:44 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:08:44 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:08:44 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:08:44 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:08:44 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:08:44 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:08:44 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:08:44 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:08:44 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:08:44 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:08:44 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:08:44 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:08:44 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:08:44 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
13:08:44 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:08:44 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.392647 (min) 0.0853703 (max)
13:08:44 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.49679 (min) 1.06463 (max)
13:08:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.0591382 (min) -0.0124895 (max)
13:08:44 DEBUG opendrift.models.basemodel.environment:905: x_wind: -1.99688 (min) -1.198 (max)
13:08:44 DEBUG opendrift.models.basemodel.environment:905: y_wind: 11.8816 (min) 12.8369 (max)
13:08:44 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -5.75178e-05 (min) -5.3462e-05 (max)
13:08:44 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:08:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:08:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:08:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:08:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:08:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:08:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:08:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:08:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:08:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:08:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:08:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:08:44 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:08:44 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:08:44 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:08:44 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:08:44 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:08:44 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 299.195 (min) 304.197 (max)
13:08:44 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:08:44 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:08:44 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.545502, mean: 3.882054, max: 4.092721
13:08:44 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:08:44 DEBUG opendrift.models.physics_methods:1061: min: 10.258137, mean: 10.730489, max: 11.021370
13:08:44 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 10.258137, mean: 10.730489, max: 11.021370
13:08:44 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:08:44 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:08:44 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:08:44 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:08:44 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.240105 m/s - 0.257970 m/s)
13:08:44 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:08:44 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:08:44 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:08:44 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:08:44 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:08:44 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:08:44 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:08:44 INFO opendrift.models.basemodel:2038: 2024-11-10 20:00:00 - step 69 of 71 - 1000 active elements (0 deactivated)
13:08:44 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:08:44 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:08:44 DEBUG opendrift.models.basemodel:2057: 61.21097311612387 <- latitude -> 61.45691754650727
13:08:44 DEBUG opendrift.models.basemodel:2062: 3.8834690182326694 <- longitude -> 3.9412654794025768
13:08:44 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:08:44 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:08:44 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:08:44 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:08:44 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:08:44 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
13:08:44 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:08:44 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:08:44 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
13:08:44 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-10 20:00:00 (before)
2024-11-10 21:00:00 (after)
13:09:00 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
13:09:00 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:09:00 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:09:00 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:09:00 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:09:00 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:09:00 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 53x36x7) for time before (2024-11-10 20:00:00)
13:09:00 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-10 20:00:00) in space (linearNDFast)
13:09:00 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:09:00 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:09:00 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -66.11654151401632 and -66.05874500756602 degrees.
13:09:00 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -66.11654151401632 and -66.05874500756602 degrees.
13:09:00 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:09:00 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:09:00 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:09:00 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:09:00 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:09:00 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:09:00 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:09:00 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:09:00 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:09:00 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:09:00 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:09:00 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:09:00 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:09:00 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:09:00 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
13:09:00 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:09:00 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.290144 (min) 0.0903133 (max)
13:09:00 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.386816 (min) 1.06001 (max)
13:09:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.289553 (min) -0.247172 (max)
13:09:00 DEBUG opendrift.models.basemodel.environment:905: x_wind: -0.508474 (min) 2.20465 (max)
13:09:00 DEBUG opendrift.models.basemodel.environment:905: y_wind: 10.2671 (min) 11.2545 (max)
13:09:00 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -6.93007e-05 (min) -6.70897e-05 (max)
13:09:00 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:09:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:09:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:09:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:09:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:09:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:09:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:09:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:09:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:09:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:09:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:09:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:09:00 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:09:00 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:09:00 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:09:00 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:09:00 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:09:00 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 299.464 (min) 304.976 (max)
13:09:00 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:09:00 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:09:00 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.599834, mean: 3.067285, max: 3.148802
13:09:00 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:09:00 DEBUG opendrift.models.physics_methods:1061: min: 8.784204, mean: 9.540338, max: 9.667234
13:09:00 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.784204, mean: 9.540338, max: 9.667234
13:09:00 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:09:00 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:09:00 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:09:00 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:09:00 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.205606 m/s - 0.226274 m/s)
13:09:00 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:09:00 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:09:00 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:09:00 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:09:00 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:09:00 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:09:00 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:09:00 INFO opendrift.models.basemodel:2038: 2024-11-10 21:00:00 - step 70 of 71 - 1000 active elements (0 deactivated)
13:09:00 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:09:00 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:09:00 DEBUG opendrift.models.basemodel:2057: 61.245211133324474 <- latitude -> 61.47627444779532
13:09:00 DEBUG opendrift.models.basemodel:2062: 3.883286381920165 <- longitude -> 3.9502803397591117
13:09:00 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:09:00 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:09:00 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:09:00 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:09:00 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:09:00 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
13:09:00 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:09:00 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:09:00 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
13:09:00 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-10 21:00:00 (before)
2024-11-10 22:00:00 (after)
13:09:19 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
13:09:19 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:09:19 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:09:19 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:09:19 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:09:19 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:09:19 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 52x34x7) for time before (2024-11-10 21:00:00)
13:09:19 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-10 21:00:00) in space (linearNDFast)
13:09:19 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:09:19 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:09:19 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -66.11672415345534 and -66.04973014393494 degrees.
13:09:19 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -66.11672415345534 and -66.04973014393494 degrees.
13:09:19 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:09:19 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:09:19 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:09:19 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:09:19 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:09:19 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:09:19 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:09:19 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:09:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:09:19 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:09:19 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:09:19 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:09:19 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:09:19 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:09:19 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
13:09:19 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:09:19 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.201875 (min) 0.110042 (max)
13:09:19 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.29971 (min) 1.06107 (max)
13:09:19 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.528553 (min) -0.49081 (max)
13:09:19 DEBUG opendrift.models.basemodel.environment:905: x_wind: 1.43081 (min) 2.79309 (max)
13:09:19 DEBUG opendrift.models.basemodel.environment:905: y_wind: 9.91008 (min) 10.8225 (max)
13:09:19 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -6.33263e-05 (min) -6.05705e-05 (max)
13:09:19 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:09:19 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:09:19 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:09:19 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:09:19 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:09:19 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:09:19 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:09:19 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:09:19 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:09:19 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:09:19 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:09:19 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:09:19 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:09:19 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:09:19 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:09:19 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:09:19 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:09:19 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 297.665 (min) 305.351 (max)
13:09:19 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:09:19 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:09:19 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.607870, mean: 2.853599, max: 2.945029
13:09:19 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:09:19 DEBUG opendrift.models.physics_methods:1061: min: 8.797769, mean: 9.202477, max: 9.349199
13:09:19 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.797769, mean: 9.202477, max: 9.349199
13:09:19 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:09:19 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:09:19 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:09:19 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:09:19 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.205923 m/s - 0.218830 m/s)
13:09:19 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:09:19 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:09:19 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:09:19 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:09:19 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:09:19 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:09:19 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:09:19 INFO opendrift.models.basemodel:2038: 2024-11-10 22:00:00 - step 71 of 71 - 1000 active elements (0 deactivated)
13:09:19 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:09:19 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:09:19 DEBUG opendrift.models.basemodel:2057: 61.28132544997358 <- latitude -> 61.49295661129739
13:09:19 DEBUG opendrift.models.basemodel:2062: 3.8889912841576564 <- longitude -> 3.9577449114509413
13:09:19 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:09:19 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:09:19 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:09:19 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:09:19 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:09:19 DEBUG opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
13:09:19 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:09:19 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:09:19 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
13:09:19 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-10 22:00:00 (before)
2024-11-10 23:00:00 (after)
13:09:36 DEBUG opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
13:09:36 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:09:36 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:09:36 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:09:36 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:09:36 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:09:36 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 50x31x7) for time before (2024-11-10 22:00:00)
13:09:36 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-10 22:00:00) in space (linearNDFast)
13:09:36 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:09:36 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:09:36 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -66.11101924278174 and -66.042265559302 degrees.
13:09:36 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -66.11101924278174 and -66.042265559302 degrees.
13:09:36 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:09:36 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:09:36 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:09:36 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:09:36 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:09:36 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:09:36 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:09:36 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:09:36 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:09:36 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:09:36 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:09:36 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:09:36 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:09:36 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:09:36 DEBUG opendrift.models.basemodel.environment:814: Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
13:09:36 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:09:36 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.102808 (min) 0.144341 (max)
13:09:36 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.273931 (min) 1.05558 (max)
13:09:36 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.701104 (min) -0.673451 (max)
13:09:36 DEBUG opendrift.models.basemodel.environment:905: x_wind: 2.72903 (min) 3.29009 (max)
13:09:36 DEBUG opendrift.models.basemodel.environment:905: y_wind: 9.45421 (min) 10.1825 (max)
13:09:36 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -3.49348e-05 (min) -3.25032e-05 (max)
13:09:36 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:09:36 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:09:36 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:09:36 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:09:36 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:09:36 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:09:36 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:09:36 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:09:36 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:09:36 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:09:36 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:09:36 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:09:36 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:09:36 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:09:36 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:09:36 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:09:36 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:09:36 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 295.479 (min) 305.308 (max)
13:09:36 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:09:36 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:09:36 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.462561, mean: 2.653821, max: 2.741600
13:09:36 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:09:36 DEBUG opendrift.models.physics_methods:1061: min: 8.549152, mean: 8.874712, max: 9.020521
13:09:36 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.549152, mean: 8.874712, max: 9.020521
13:09:36 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:09:36 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:09:36 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:09:36 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:09:36 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.200104 m/s - 0.211137 m/s)
13:09:36 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:09:36 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:09:36 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:09:36 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:09:36 DEBUG opendrift.models.basemodel:2153: Cleaning up
13:09:36 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:09:36 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:09:36 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:09:36 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:09:36 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:09:36 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:09:36 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:09:36 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:09:36 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:09:36 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:09:36 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:09:36 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:09:36 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:09:36 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:09:36 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:09:36 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:09:36 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:09:36 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:09:36 DEBUG opendrift.models.basemodel:95: Changed mode from Mode.Run to Mode.Result
13:09:36 DEBUG opendrift.models.oceandrift:115: No machine learning correction available.
13:09:36 DEBUG opendrift.config:168: Adding 50 config items from environment
13:09:36 DEBUG opendrift.config:168: Adding 5 config items from environment
13:09:36 DEBUG opendrift.config:168: Adding 18 config items from __init__
13:09:36 DEBUG opendrift.config:178: Overwriting config item readers:max_number_of_fails
13:09:36 DEBUG opendrift.config:168: Adding 5 config items from __init__
13:09:36 INFO opendrift.models.basemodel:515: OpenDriftSimulation initialised (version 1.11.13 / v1.11.13-99-gd2132d3)
13:09:36 DEBUG opendrift.config:168: Adding 15 config items from oceandrift
13:09:36 DEBUG opendrift.config:178: Overwriting config item seed:z
13:09:36 DEBUG opendrift.readers.reader_lazy:38: Delaying initialisation of LazyReader: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:09:36 DEBUG opendrift.models.basemodel.environment:328: Added reader LazyReader: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:09:36 INFO opendrift.models.basemodel.environment:218: Adding a dynamical landmask with max. priority based on assumed maximum speed of 2.0 m/s. Adding a customised landmask may be faster...
13:09:36 DEBUG opendrift.readers.basereader:186: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated
13:09:36 DEBUG opendrift.models.basemodel.environment:328: Added reader global_landmask
13:09:36 INFO opendrift.models.basemodel.environment:245: Fallback values will be used for the following variables which have no readers:
13:09:36 INFO opendrift.models.basemodel.environment:248: x_sea_water_velocity: 0.000000
13:09:36 INFO opendrift.models.basemodel.environment:248: y_sea_water_velocity: 0.000000
13:09:36 INFO opendrift.models.basemodel.environment:248: sea_surface_height: 0.000000
13:09:36 INFO opendrift.models.basemodel.environment:248: x_wind: 0.000000
13:09:36 INFO opendrift.models.basemodel.environment:248: y_wind: 0.000000
13:09:36 INFO opendrift.models.basemodel.environment:248: upward_sea_water_velocity: 0.000000
13:09:36 INFO opendrift.models.basemodel.environment:248: ocean_vertical_diffusivity: 0.000000
13:09:36 INFO opendrift.models.basemodel.environment:248: sea_surface_wave_significant_height: 0.000000
13:09:36 INFO opendrift.models.basemodel.environment:248: sea_surface_wave_stokes_drift_x_velocity: 0.000000
13:09:36 INFO opendrift.models.basemodel.environment:248: sea_surface_wave_stokes_drift_y_velocity: 0.000000
13:09:36 INFO opendrift.models.basemodel.environment:248: sea_surface_wave_period_at_variance_spectral_density_maximum: 0.000000
13:09:36 INFO opendrift.models.basemodel.environment:248: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0.000000
13:09:36 INFO opendrift.models.basemodel.environment:248: sea_surface_swell_wave_to_direction: 0.000000
13:09:36 INFO opendrift.models.basemodel.environment:248: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0.000000
13:09:36 INFO opendrift.models.basemodel.environment:248: sea_surface_swell_wave_significant_height: 0.000000
13:09:36 INFO opendrift.models.basemodel.environment:248: sea_surface_wind_wave_to_direction: 0.000000
13:09:36 INFO opendrift.models.basemodel.environment:248: sea_surface_wind_wave_mean_period: 0.000000
13:09:36 INFO opendrift.models.basemodel.environment:248: sea_surface_wind_wave_significant_height: 0.000000
13:09:36 INFO opendrift.models.basemodel.environment:248: surface_downward_x_stress: 0.000000
13:09:36 INFO opendrift.models.basemodel.environment:248: surface_downward_y_stress: 0.000000
13:09:36 INFO opendrift.models.basemodel.environment:248: turbulent_kinetic_energy: 0.000000
13:09:36 INFO opendrift.models.basemodel.environment:248: turbulent_generic_length_scale: 0.000000
13:09:36 INFO opendrift.models.basemodel.environment:248: ocean_mixed_layer_thickness: 50.000000
13:09:36 INFO opendrift.models.basemodel.environment:248: sea_floor_depth_below_sea_level: 10000.000000
13:09:36 DEBUG opendrift.models.basemodel:95: Changed mode from Mode.Config to Mode.Ready
13:09:36 DEBUG opendrift.models.basemodel:95: Changed mode from Mode.Ready to Mode.Run
13:09:36 DEBUG opendrift.models.basemodel:1778:
------------------------------------------------------
Software and hardware:
OpenDrift version 1.11.13
Platform: Linux, 5.15.0-1057-aws
69.05993270874023 GB memory
36 processors (x86_64)
NumPy version 1.26.4
SciPy version 1.14.1
Matplotlib version 3.9.1
NetCDF4 version 1.6.1
Xarray version 2024.10.0
ADIOS (adios_db) version 1.1.1
Copernicusmarine version 1.3.4
Python version 3.11.6 | packaged by conda-forge | (main, Oct 3 2023, 10:40:35) [GCC 12.3.0]
------------------------------------------------------
13:09:36 DEBUG opendrift.models.basemodel:1792: No output file is specified, neglecting export_buffer_length
13:09:36 DEBUG opendrift.models.basemodel:1910: Finalizing environment and preparing readers for simulation coverage ([-4.71627286447143, 55.39190523302233, 13.715758357177728, 64.60825116956556]) and time (2024-11-08 00:00:00 to 2024-11-10 23:00:00)
13:09:36 DEBUG opendrift.models.basemodel.environment:180: Preparing LazyReader: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be for extent [-4.71627286447143, 55.39190523302233, 13.715758357177728, 64.60825116956556]
13:09:36 DEBUG opendrift.models.basemodel.environment:180: Preparing global_landmask for extent [-4.71627286447143, 55.39190523302233, 13.715758357177728, 64.60825116956556]
13:09:36 DEBUG opendrift.readers.basereader.variables:549: Nothing more to prepare for global_landmask
13:09:36 INFO opendrift.models.basemodel:936: Using existing reader for land_binary_mask
13:09:36 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:09:36 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:09:36 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:09:36 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:09:36 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:09:36 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:09:36 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:09:36 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:09:36 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:09:36 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:09:36 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:09:36 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:09:36 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:09:36 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:09:36 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:09:36 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:09:36 INFO opendrift.models.basemodel:947: All points are in ocean
13:09:36 DEBUG opendrift.models.basemodel:891: to be seeded: 1000, already seeded 0
13:09:36 DEBUG opendrift.models.basemodel:909: Released 1000 new elements.
13:09:36 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:09:36 INFO opendrift.models.basemodel:2038: 2024-11-08 00:00:00 - step 1 of 71 - 1000 active elements (0 deactivated)
13:09:36 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:09:36 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:09:36 DEBUG opendrift.models.basemodel:2057: 59.99731 <- latitude -> 60.002846
13:09:36 DEBUG opendrift.models.basemodel:2062: 4.4945407 <- longitude -> 4.504945
13:09:36 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:09:36 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:09:36 DEBUG opendrift.models.basemodel.environment:581: Variables not covered by any reader: ['sea_surface_wave_significant_height', 'y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity', 'turbulent_generic_length_scale', 'sea_surface_wave_period_at_variance_spectral_density_maximum', 'ocean_vertical_diffusivity', 'sea_surface_wave_stokes_drift_y_velocity', 'sea_surface_height', 'x_wind', 'surface_downward_x_stress', 'sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment', 'surface_downward_y_stress', 'ocean_mixed_layer_thickness', 'sea_surface_wave_stokes_drift_x_velocity', 'sea_floor_depth_below_sea_level', 'turbulent_kinetic_energy', 'y_wind']
13:09:36 DEBUG opendrift.readers.reader_lazy:57: Initialising: LazyReader: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:09:36 DEBUG opendrift.readers:84: Testing reader <module 'opendrift.readers.reader_netCDF_CF_generic' from '/root/project/opendrift/readers/reader_netCDF_CF_generic.py'>
13:09:36 INFO opendrift.readers.reader_netCDF_CF_generic:102: Opening dataset: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:09:37 DEBUG opendrift.readers.reader_netCDF_CF_generic:119: Finding coordinate variables.
13:09:37 DEBUG opendrift.readers.reader_netCDF_CF_generic:134: Parsing CF grid mapping dictionary: {'grid_mapping_name': 'polar_stereographic', 'straight_vertical_longitude_from_pole': 70.0, 'latitude_of_projection_origin': 90.0, 'standard_parallel': 60.0, 'false_easting': 3192800.0, 'false_northing': 1784000.0, 'semi_major_axis': 6378137.0, 'semi_minor_axis': 6356752.3142, 'proj4': '+proj=stere +lat_0=90 +lat_ts=60 +lon_0=70 +x_0=3192800 +y_0=1784000 +a=6378137 +b=6356752.3142 +units=m +no_defs +type=crs'}
13:09:38 INFO opendrift.readers.reader_netCDF_CF_generic:325: Detected dimensions: {'x': 'X', 'y': 'Y', 'z': 'depth', 'time': 'time'}
13:09:38 DEBUG opendrift.readers.reader_netCDF_CF_generic:361: Skipped variables without standard_name: ['angle', 'tke', 'ubar', 'vbar']
13:09:38 DEBUG opendrift.readers.basereader.variables:608: Setting buffer size 25 for reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be, assuming a maximum average speed of 5 m/s and time span of 1:00:00
13:09:38 DEBUG opendrift.readers.basereader:186: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated
13:09:38 DEBUG opendrift.readers.basereader.variables:563: Adding variable mapping: ['x_wind', 'y_wind'] -> wind_speed
13:09:38 DEBUG opendrift.readers.basereader.variables:563: Adding variable mapping: ['x_sea_water_velocity', 'y_sea_water_velocity'] -> sea_water_speed
13:09:38 DEBUG opendrift.readers.basereader.structured:153: Clearing cache for reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be before starting new simulation
13:09:38 DEBUG opendrift.readers.basereader.variables:608: Setting buffer size 11 for reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be, assuming a maximum average speed of 2 m/s and time span of 1:00:00
13:09:38 DEBUG opendrift.readers.basereader.variables:549: Nothing more to prepare for https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:09:38 DEBUG opendrift.readers.reader_lazy:72: Reader initialised: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:09:38 DEBUG opendrift.readers.basereader.variables:608: Setting buffer size 11 for reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be, assuming a maximum average speed of 2 m/s and time span of 1:00:00
13:09:38 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:09:38 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:09:38 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:09:38 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:09:38 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:09:38 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:09:38 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:09:38 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:09:38 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:09:38 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:09:38 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:09:38 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:09:38 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:09:38 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:09:38 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:09:38 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:09:38 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:09:38 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:09:38 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-08 00:00:00 (before)
2024-11-08 01:00:00 (after)
13:09:39 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:09:39 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:09:39 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:09:39 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:09:39 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:09:39 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 22x23x2) for time before (2024-11-08 00:00:00)
13:09:39 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-08 00:00:00) in space (linearNDFast)
13:09:39 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:09:39 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:09:39 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.50547356643384 and -65.49506707409589 degrees.
13:09:39 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.50547356643384 and -65.49506707409589 degrees.
13:09:39 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:09:39 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:09:39 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:09:39 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:09:39 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:09:39 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:09:39 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.210132 (min) 0.22971 (max)
13:09:39 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.456923 (min) 0.501266 (max)
13:09:39 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.195853 (min) -0.194241 (max)
13:09:39 DEBUG opendrift.models.basemodel.environment:905: x_wind: 0.713765 (min) 0.718199 (max)
13:09:39 DEBUG opendrift.models.basemodel.environment:905: y_wind: 9.47233 (min) 9.52267 (max)
13:09:39 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 6.17335e-07 (min) 7.52694e-07 (max)
13:09:39 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:09:39 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:09:39 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:09:39 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:09:39 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:09:39 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:09:39 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:09:39 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:09:39 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:09:39 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:09:39 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:09:39 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:09:39 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:09:39 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:09:39 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:09:39 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:09:39 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:09:39 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 298.369 (min) 298.632 (max)
13:09:39 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:09:39 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:09:39 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.219912, mean: 2.231547, max: 2.243291
13:09:39 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:09:39 DEBUG opendrift.models.physics_methods:1061: min: 8.117035, mean: 8.138277, max: 8.159667
13:09:39 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.117035, mean: 8.138277, max: 8.159667
13:09:39 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:09:39 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:09:39 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:09:39 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:09:39 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.189990 m/s - 0.190988 m/s)
13:09:39 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:09:39 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:09:39 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:09:39 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:09:39 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:09:39 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:09:39 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:09:39 INFO opendrift.models.basemodel:2038: 2024-11-08 01:00:00 - step 2 of 71 - 1000 active elements (0 deactivated)
13:09:39 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:09:39 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:09:39 DEBUG opendrift.models.basemodel:2057: 60.01925518324957 <- latitude -> 60.023959760184916
13:09:39 DEBUG opendrift.models.basemodel:2062: 4.5090254348021555 <- longitude -> 4.5206286318510625
13:09:39 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:09:39 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:09:39 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:09:39 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:09:39 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:09:39 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:09:39 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:09:39 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:09:39 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:09:39 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:09:39 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:09:39 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:09:39 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:09:39 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:09:39 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:09:39 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:09:39 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:09:39 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:09:39 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:09:39 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:09:39 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-08 01:00:00 (before)
2024-11-08 02:00:00 (after)
13:09:40 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:09:40 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:09:40 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:09:40 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:09:40 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:09:40 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 22x23x2) for time before (2024-11-08 01:00:00)
13:09:40 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-08 01:00:00) in space (linearNDFast)
13:09:40 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:09:40 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:09:40 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.4909854746843 and -65.4793822801393 degrees.
13:09:40 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.4909854746843 and -65.4793822801393 degrees.
13:09:40 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:09:40 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:09:40 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:09:40 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:09:40 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:09:40 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:09:40 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.301309 (min) 0.319012 (max)
13:09:40 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.357301 (min) 0.373825 (max)
13:09:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.107226 (min) -0.106349 (max)
13:09:40 DEBUG opendrift.models.basemodel.environment:905: x_wind: 0.236685 (min) 0.318572 (max)
13:09:40 DEBUG opendrift.models.basemodel.environment:905: y_wind: 8.96121 (min) 8.98144 (max)
13:09:40 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 1.56203e-05 (min) 1.56698e-05 (max)
13:09:40 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:09:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:09:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:09:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:09:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:09:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:09:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:09:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:09:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:09:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:09:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:09:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:09:40 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:09:40 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:09:40 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:09:40 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:09:40 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:09:40 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 299.182 (min) 299.393 (max)
13:09:40 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:09:40 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:09:40 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.977855, mean: 1.982280, max: 1.986133
13:09:40 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:09:40 DEBUG opendrift.models.physics_methods:1061: min: 7.661729, mean: 7.670295, max: 7.677748
13:09:40 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.661729, mean: 7.670295, max: 7.677748
13:09:40 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:09:40 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:09:40 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:09:40 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:09:40 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.179333 m/s - 0.179708 m/s)
13:09:40 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:09:40 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:09:40 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:09:40 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:09:40 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:09:40 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:09:40 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:09:40 INFO opendrift.models.basemodel:2038: 2024-11-08 02:00:00 - step 3 of 71 - 1000 active elements (0 deactivated)
13:09:40 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:09:40 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:09:40 DEBUG opendrift.models.basemodel:2057: 60.03673125814423 <- latitude -> 60.04143154936496
13:09:40 DEBUG opendrift.models.basemodel:2062: 4.528829417195416 <- longitude -> 4.541642592925025
13:09:40 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:09:40 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:09:40 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:09:40 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:09:40 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:09:40 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:09:40 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:09:40 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:09:40 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:09:40 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:09:40 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:09:40 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:09:40 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:09:40 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:09:40 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:09:40 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:09:40 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:09:40 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:09:40 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:09:40 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:09:40 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-08 02:00:00 (before)
2024-11-08 03:00:00 (after)
13:09:41 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:09:41 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:09:41 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:09:41 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:09:41 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:09:41 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 22x23x2) for time before (2024-11-08 02:00:00)
13:09:41 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-08 02:00:00) in space (linearNDFast)
13:09:41 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:09:41 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:09:41 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.47118149008014 and -65.45836830279043 degrees.
13:09:41 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.47118149008014 and -65.45836830279043 degrees.
13:09:41 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:09:41 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:09:41 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:09:41 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:09:41 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:09:41 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:09:41 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.374514 (min) 0.385421 (max)
13:09:41 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.249226 (min) 0.262055 (max)
13:09:41 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.0952556 (min) -0.0939549 (max)
13:09:41 DEBUG opendrift.models.basemodel.environment:905: x_wind: 0.214746 (min) 0.298614 (max)
13:09:41 DEBUG opendrift.models.basemodel.environment:905: y_wind: 9.0826 (min) 9.13867 (max)
13:09:41 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -4.74015e-07 (min) -9.55628e-08 (max)
13:09:41 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:09:41 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:09:41 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:09:41 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:09:41 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:09:41 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:09:41 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:09:41 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:09:41 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:09:41 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:09:41 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:09:41 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:09:41 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:09:41 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:09:41 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:09:41 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:09:41 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:09:41 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 299.612 (min) 299.789 (max)
13:09:41 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:09:41 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:09:41 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.031444, mean: 2.044418, max: 2.055612
13:09:41 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:09:41 DEBUG opendrift.models.physics_methods:1061: min: 7.764830, mean: 7.789583, max: 7.810882
13:09:41 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.764830, mean: 7.789583, max: 7.810882
13:09:41 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:09:41 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:09:41 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:09:41 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:09:41 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.181746 m/s - 0.182824 m/s)
13:09:41 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:09:41 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:09:41 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:09:41 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:09:41 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:09:41 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:09:41 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:09:41 INFO opendrift.models.basemodel:2038: 2024-11-08 03:00:00 - step 4 of 71 - 1000 active elements (0 deactivated)
13:09:41 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:09:41 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:09:41 DEBUG opendrift.models.basemodel:2057: 60.050732987633566 <- latitude -> 60.05571298118001
13:09:41 DEBUG opendrift.models.basemodel:2062: 4.5538127520877225 <- longitude -> 4.566391217740104
13:09:41 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:09:41 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:09:41 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:09:41 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:09:41 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:09:41 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:09:41 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:09:41 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:09:41 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:09:41 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:09:41 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:09:41 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:09:41 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:09:41 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:09:41 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:09:41 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:09:41 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:09:41 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:09:41 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:09:41 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:09:41 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-08 03:00:00 (before)
2024-11-08 04:00:00 (after)
13:09:43 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:09:43 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:09:43 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:09:43 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:09:43 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:09:43 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-11-08 03:00:00)
13:09:43 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-08 03:00:00) in space (linearNDFast)
13:09:43 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:09:43 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:09:43 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.44619815356467 and -65.43361968263382 degrees.
13:09:43 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.44619815356467 and -65.43361968263382 degrees.
13:09:43 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:09:43 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:09:43 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:09:43 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:09:43 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:09:43 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:09:43 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.347589 (min) 0.366294 (max)
13:09:43 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.161631 (min) 0.184742 (max)
13:09:43 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.155303 (min) -0.152706 (max)
13:09:43 DEBUG opendrift.models.basemodel.environment:905: x_wind: -0.782212 (min) -0.738163 (max)
13:09:43 DEBUG opendrift.models.basemodel.environment:905: y_wind: 9.13525 (min) 9.14657 (max)
13:09:43 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -2.16465e-05 (min) -2.1054e-05 (max)
13:09:43 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:09:43 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:09:43 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:09:43 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:09:43 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:09:43 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:09:43 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:09:43 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:09:43 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:09:43 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:09:43 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:09:43 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:09:43 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:09:43 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:09:43 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:09:43 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:09:43 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:09:43 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 299.965 (min) 300.115 (max)
13:09:43 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:09:43 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:09:43 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.066622, mean: 2.070499, max: 2.072855
13:09:43 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:09:43 DEBUG opendrift.models.physics_methods:1061: min: 7.831772, mean: 7.839115, max: 7.843575
13:09:43 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.831772, mean: 7.839115, max: 7.843575
13:09:43 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:09:43 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:09:43 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:09:43 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:09:43 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.183313 m/s - 0.183589 m/s)
13:09:43 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:09:43 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:09:43 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:09:43 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:09:43 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:09:43 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:09:43 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:09:43 INFO opendrift.models.basemodel:2038: 2024-11-08 04:00:00 - step 5 of 71 - 1000 active elements (0 deactivated)
13:09:43 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:09:43 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:09:43 DEBUG opendrift.models.basemodel:2057: 60.06186163898535 <- latitude -> 60.06733939320523
13:09:43 DEBUG opendrift.models.basemodel:2062: 4.576465344242001 <- longitude -> 4.588023377627226
13:09:43 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:09:43 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:09:43 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:09:43 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:09:43 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:09:43 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:09:43 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:09:43 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:09:43 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:09:43 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:09:43 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:09:43 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:09:43 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:09:43 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:09:43 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:09:43 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:09:43 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:09:43 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:09:43 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:09:43 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:09:43 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-08 04:00:00 (before)
2024-11-08 05:00:00 (after)
13:09:44 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:09:44 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:09:44 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:09:44 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:09:44 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:09:44 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-11-08 04:00:00)
13:09:44 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-08 04:00:00) in space (linearNDFast)
13:09:44 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:09:44 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:09:44 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.42354554631066 and -65.41198752063892 degrees.
13:09:44 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.42354554631066 and -65.41198752063892 degrees.
13:09:44 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:09:44 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:09:44 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:09:44 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:09:44 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:09:44 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:09:44 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.217452 (min) 0.250318 (max)
13:09:44 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.148113 (min) 0.178663 (max)
13:09:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.267491 (min) -0.264443 (max)
13:09:44 DEBUG opendrift.models.basemodel.environment:905: x_wind: -1.52563 (min) -1.44828 (max)
13:09:44 DEBUG opendrift.models.basemodel.environment:905: y_wind: 9.47003 (min) 9.48817 (max)
13:09:44 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -3.33745e-05 (min) -3.32625e-05 (max)
13:09:44 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:09:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:09:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:09:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:09:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:09:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:09:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:09:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:09:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:09:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:09:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:09:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:09:44 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:09:44 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:09:44 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:09:44 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:09:44 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:09:44 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 300.244 (min) 300.325 (max)
13:09:44 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:09:44 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:09:44 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.262467, mean: 2.264209, max: 2.266814
13:09:44 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:09:44 DEBUG opendrift.models.physics_methods:1061: min: 8.194468, mean: 8.197621, max: 8.202336
13:09:44 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.194468, mean: 8.197621, max: 8.202336
13:09:44 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:09:44 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:09:44 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:09:44 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:09:44 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.191802 m/s - 0.191986 m/s)
13:09:44 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:09:44 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:09:44 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:09:44 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:09:44 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:09:44 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:09:44 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:09:44 INFO opendrift.models.basemodel:2038: 2024-11-08 05:00:00 - step 6 of 71 - 1000 active elements (0 deactivated)
13:09:44 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:09:44 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:09:44 DEBUG opendrift.models.basemodel:2057: 60.07288764914679 <- latitude -> 60.07897665900941
13:09:44 DEBUG opendrift.models.basemodel:2062: 4.590682594630607 <- longitude -> 4.600240907421786
13:09:44 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:09:44 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:09:44 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:09:44 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:09:44 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:09:44 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:09:44 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:09:44 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:09:44 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:09:44 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:09:44 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:09:44 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:09:44 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:09:44 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:09:44 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:09:44 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:09:44 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:09:44 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:09:44 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:09:44 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:09:44 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-08 05:00:00 (before)
2024-11-08 06:00:00 (after)
13:09:45 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:09:45 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:09:45 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:09:45 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:09:45 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:09:45 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-11-08 05:00:00)
13:09:45 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-08 05:00:00) in space (linearNDFast)
13:09:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:09:45 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:09:45 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.40932829436704 and -65.39976997900831 degrees.
13:09:45 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.40932829436704 and -65.39976997900831 degrees.
13:09:45 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:09:45 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:09:45 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:09:45 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:09:45 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:09:45 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:09:45 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.0759154 (min) 0.0915553 (max)
13:09:45 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.210238 (min) 0.253489 (max)
13:09:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.42035 (min) -0.418198 (max)
13:09:45 DEBUG opendrift.models.basemodel.environment:905: x_wind: -1.53537 (min) -1.47082 (max)
13:09:45 DEBUG opendrift.models.basemodel.environment:905: y_wind: 9.85446 (min) 9.87983 (max)
13:09:45 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -4.19394e-05 (min) -4.17001e-05 (max)
13:09:45 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:09:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:09:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:09:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:09:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:09:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:09:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:09:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:09:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:09:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:09:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:09:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:09:45 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:09:45 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:09:45 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:09:45 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:09:45 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:09:45 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 300.208 (min) 300.299 (max)
13:09:45 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:09:45 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:09:45 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.442251, mean: 2.451276, max: 2.459224
13:09:45 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:09:45 DEBUG opendrift.models.physics_methods:1061: min: 8.513826, mean: 8.529541, max: 8.543359
13:09:45 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.513826, mean: 8.529541, max: 8.543359
13:09:45 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:09:45 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:09:45 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:09:45 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:09:45 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.199277 m/s - 0.199968 m/s)
13:09:45 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:09:45 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:09:45 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:09:45 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:09:45 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:09:45 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:09:45 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:09:45 INFO opendrift.models.basemodel:2038: 2024-11-08 06:00:00 - step 7 of 71 - 1000 active elements (0 deactivated)
13:09:45 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:09:45 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:09:45 DEBUG opendrift.models.basemodel:2057: 60.08616893285428 <- latitude -> 60.093116329247835
13:09:45 DEBUG opendrift.models.basemodel:2062: 4.594612220115568 <- longitude -> 4.603801875075114
13:09:45 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:09:45 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:09:45 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:09:45 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:09:45 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:09:45 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:09:45 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:09:45 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:09:45 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:09:45 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:09:45 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:09:45 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:09:45 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:09:45 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:09:45 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:09:45 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:09:45 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:09:45 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:09:45 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:09:45 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:09:45 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-08 06:00:00 (before)
2024-11-08 07:00:00 (after)
13:09:47 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:09:47 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:09:47 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:09:47 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:09:47 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:09:47 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 23x22x2) for time before (2024-11-08 06:00:00)
13:09:47 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-08 06:00:00) in space (linearNDFast)
13:09:47 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:09:47 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:09:47 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.40539865995557 and -65.39620900634854 degrees.
13:09:47 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.40539865995557 and -65.39620900634854 degrees.
13:09:47 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:09:47 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:09:47 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:09:47 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:09:47 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:09:47 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:09:47 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.00331376 (min) 0.0124691 (max)
13:09:47 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.324157 (min) 0.362922 (max)
13:09:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.559465 (min) -0.557627 (max)
13:09:47 DEBUG opendrift.models.basemodel.environment:905: x_wind: -1.1933 (min) -1.11563 (max)
13:09:47 DEBUG opendrift.models.basemodel.environment:905: y_wind: 9.68755 (min) 9.69748 (max)
13:09:47 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -3.22231e-05 (min) -3.20839e-05 (max)
13:09:47 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:09:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:09:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:09:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:09:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:09:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:09:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:09:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:09:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:09:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:09:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:09:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:09:47 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:09:47 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:09:47 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:09:47 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:09:47 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:09:47 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 299.814 (min) 300.081 (max)
13:09:47 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:09:47 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:09:47 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.342359, mean: 2.343648, max: 2.345234
13:09:47 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:09:47 DEBUG opendrift.models.physics_methods:1061: min: 8.337894, mean: 8.340187, max: 8.343009
13:09:47 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.337894, mean: 8.340187, max: 8.343009
13:09:47 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:09:47 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:09:47 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:09:47 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:09:47 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.195159 m/s - 0.195279 m/s)
13:09:47 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:09:47 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:09:47 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:09:47 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:09:47 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:09:47 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:09:47 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:09:47 INFO opendrift.models.basemodel:2038: 2024-11-08 07:00:00 - step 8 of 71 - 1000 active elements (0 deactivated)
13:09:47 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:09:47 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:09:47 DEBUG opendrift.models.basemodel:2057: 60.10311938302431 <- latitude -> 60.110919991863966
13:09:47 DEBUG opendrift.models.basemodel:2062: 4.593646789374961 <- longitude -> 4.602984497064547
13:09:47 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:09:47 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:09:47 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:09:47 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:09:47 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:09:47 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:09:47 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:09:47 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:09:47 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:09:47 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:09:47 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:09:47 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:09:47 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:09:47 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:09:47 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:09:47 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:09:47 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:09:47 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:09:47 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:09:47 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:09:47 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-08 07:00:00 (before)
2024-11-08 08:00:00 (after)
13:09:48 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:09:48 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:09:48 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:09:48 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:09:48 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:09:48 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 23x22x2) for time before (2024-11-08 07:00:00)
13:09:48 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-08 07:00:00) in space (linearNDFast)
13:09:48 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:09:48 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:09:48 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.40636409007053 and -65.39702637268641 degrees.
13:09:48 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.40636409007053 and -65.39702637268641 degrees.
13:09:48 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:09:48 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:09:48 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:09:48 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:09:48 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:09:48 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:09:48 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.00794446 (min) 0.0122049 (max)
13:09:48 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.413877 (min) 0.454744 (max)
13:09:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.648085 (min) -0.646399 (max)
13:09:48 DEBUG opendrift.models.basemodel.environment:905: x_wind: -1.59438 (min) -1.50087 (max)
13:09:48 DEBUG opendrift.models.basemodel.environment:905: y_wind: 9.45487 (min) 9.47375 (max)
13:09:48 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -1.59364e-05 (min) -1.58702e-05 (max)
13:09:48 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:09:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:09:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:09:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:09:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:09:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:09:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:09:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:09:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:09:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:09:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:09:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:09:48 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:09:48 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:09:48 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:09:48 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:09:48 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:09:48 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 299.15 (min) 299.583 (max)
13:09:48 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:09:48 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:09:48 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.255032, mean: 2.262348, max: 2.270431
13:09:48 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:09:48 DEBUG opendrift.models.physics_methods:1061: min: 8.180991, mean: 8.194250, max: 8.208877
13:09:48 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.180991, mean: 8.194250, max: 8.208877
13:09:48 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:09:48 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:09:48 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:09:48 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:09:48 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.191487 m/s - 0.192139 m/s)
13:09:48 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:09:48 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:09:48 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:09:48 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:09:48 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:09:48 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:09:48 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:09:48 INFO opendrift.models.basemodel:2038: 2024-11-08 08:00:00 - step 9 of 71 - 1000 active elements (0 deactivated)
13:09:48 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:09:48 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:09:48 DEBUG opendrift.models.basemodel:2057: 60.122955769325344 <- latitude -> 60.131156268485256
13:09:48 DEBUG opendrift.models.basemodel:2062: 4.592271701747929 <- longitude -> 4.601676328722887
13:09:48 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:09:48 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:09:48 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:09:48 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:09:48 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:09:48 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:09:48 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:09:48 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:09:48 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:09:48 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:09:48 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:09:48 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:09:48 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:09:48 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:09:48 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:09:48 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:09:48 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:09:48 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:09:48 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:09:48 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:09:48 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-08 08:00:00 (before)
2024-11-08 09:00:00 (after)
13:09:49 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:09:49 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:09:49 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:09:49 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:09:49 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:09:49 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-11-08 08:00:00)
13:09:49 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-08 08:00:00) in space (linearNDFast)
13:09:49 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:09:49 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:09:49 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.40773916985034 and -65.39833454489775 degrees.
13:09:49 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.40773916985034 and -65.39833454489775 degrees.
13:09:49 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:09:49 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:09:49 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:09:49 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:09:49 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:09:49 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:09:49 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.000542333 (min) 0.0140756 (max)
13:09:49 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.441684 (min) 0.473929 (max)
13:09:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.663621 (min) -0.661988 (max)
13:09:49 DEBUG opendrift.models.basemodel.environment:905: x_wind: -2.12259 (min) -2.02848 (max)
13:09:49 DEBUG opendrift.models.basemodel.environment:905: y_wind: 9.08497 (min) 9.12168 (max)
13:09:49 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 6.23458e-06 (min) 6.28076e-06 (max)
13:09:49 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:09:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:09:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:09:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:09:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:09:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:09:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:09:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:09:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:09:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:09:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:09:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:09:49 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:09:49 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:09:49 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:09:49 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:09:49 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:09:49 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 298.556 (min) 298.955 (max)
13:09:49 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:09:49 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:09:49 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.136052, mean: 2.144194, max: 2.151398
13:09:49 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:09:49 DEBUG opendrift.models.physics_methods:1061: min: 7.962244, mean: 7.977403, max: 7.990794
13:09:49 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.962244, mean: 7.977403, max: 7.990794
13:09:49 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:09:49 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:09:49 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:09:49 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:09:49 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.186367 m/s - 0.187035 m/s)
13:09:49 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:09:49 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:09:49 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:09:49 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:09:49 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:09:49 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:09:49 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:09:49 INFO opendrift.models.basemodel:2038: 2024-11-08 09:00:00 - step 10 of 71 - 1000 active elements (0 deactivated)
13:09:49 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:09:49 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:09:49 DEBUG opendrift.models.basemodel:2057: 60.14362535183693 <- latitude -> 60.151799142553514
13:09:49 DEBUG opendrift.models.basemodel:2062: 4.589825022113817 <- longitude -> 4.599786056477398
13:09:49 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:09:49 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:09:49 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:09:49 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:09:49 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:09:49 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:09:49 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:09:49 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:09:49 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:09:49 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:09:49 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:09:49 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:09:49 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:09:49 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:09:49 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:09:49 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:09:49 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:09:49 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:09:49 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:09:49 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:09:49 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-08 09:00:00 (before)
2024-11-08 10:00:00 (after)
13:09:51 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:09:51 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:09:51 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:09:51 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:09:51 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:09:51 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 23x22x2) for time before (2024-11-08 09:00:00)
13:09:51 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-08 09:00:00) in space (linearNDFast)
13:09:51 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:09:51 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:09:51 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.4101858453742 and -65.40022480236075 degrees.
13:09:51 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.4101858453742 and -65.40022480236075 degrees.
13:09:51 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:09:51 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:09:51 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:09:51 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:09:51 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:09:51 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:09:51 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.0243661 (min) -0.00756787 (max)
13:09:51 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.48037 (min) 0.51316 (max)
13:09:51 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.602285 (min) -0.600117 (max)
13:09:51 DEBUG opendrift.models.basemodel.environment:905: x_wind: 0.652992 (min) 0.744117 (max)
13:09:51 DEBUG opendrift.models.basemodel.environment:905: y_wind: 8.37194 (min) 8.56641 (max)
13:09:51 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 2.60616e-05 (min) 2.63214e-05 (max)
13:09:51 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:09:51 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:09:51 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:09:51 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:09:51 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:09:51 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:09:51 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:09:51 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:09:51 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:09:51 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:09:51 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:09:51 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:09:51 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:09:51 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:09:51 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:09:51 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:09:51 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:09:51 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 298.657 (min) 298.814 (max)
13:09:51 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:09:51 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:09:51 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.737820, mean: 1.774073, max: 1.815760
13:09:51 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:09:51 DEBUG opendrift.models.physics_methods:1061: min: 7.181777, mean: 7.256253, max: 7.341062
13:09:51 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.181777, mean: 7.256253, max: 7.341062
13:09:51 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:09:51 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:09:51 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:09:51 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:09:51 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.168099 m/s - 0.171827 m/s)
13:09:51 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:09:51 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:09:51 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:09:51 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:09:51 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:09:51 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:09:51 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:09:51 INFO opendrift.models.basemodel:2038: 2024-11-08 10:00:00 - step 11 of 71 - 1000 active elements (0 deactivated)
13:09:51 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:09:51 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:09:51 DEBUG opendrift.models.basemodel:2057: 60.16482284620439 <- latitude -> 60.173685516104115
13:09:51 DEBUG opendrift.models.basemodel:2062: 4.589279930710209 <- longitude -> 4.600142319974649
13:09:51 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:09:51 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:09:51 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:09:51 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:09:51 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:09:51 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:09:51 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:09:51 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:09:51 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:09:51 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:09:51 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:09:51 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:09:51 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:09:51 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:09:51 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:09:51 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:09:51 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:09:51 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:09:51 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:09:51 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:09:51 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-08 10:00:00 (before)
2024-11-08 11:00:00 (after)
13:09:52 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:09:52 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:09:52 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:09:52 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:09:52 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:09:52 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 24x22x2) for time before (2024-11-08 10:00:00)
13:09:52 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-08 10:00:00) in space (linearNDFast)
13:09:52 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:09:52 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:09:52 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.41073094293404 and -65.39986854125594 degrees.
13:09:52 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.41073094293404 and -65.39986854125594 degrees.
13:09:52 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:09:52 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:09:52 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:09:52 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:09:52 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:09:52 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:09:52 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.00837861 (min) 0.00956914 (max)
13:09:52 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.518007 (min) 0.544837 (max)
13:09:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.477972 (min) -0.475106 (max)
13:09:52 DEBUG opendrift.models.basemodel.environment:905: x_wind: -0.746087 (min) -0.728571 (max)
13:09:52 DEBUG opendrift.models.basemodel.environment:905: y_wind: 9.00994 (min) 9.04436 (max)
13:09:52 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 3.80021e-05 (min) 3.82311e-05 (max)
13:09:52 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:09:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:09:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:09:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:09:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:09:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:09:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:09:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:09:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:09:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:09:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:09:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:09:52 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:09:52 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:09:52 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:09:52 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:09:52 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:09:52 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 299.188 (min) 299.407 (max)
13:09:52 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:09:52 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:09:52 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.010649, mean: 2.017603, max: 2.025477
13:09:52 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:09:52 DEBUG opendrift.models.physics_methods:1061: min: 7.724987, mean: 7.738333, max: 7.753419
13:09:52 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.724987, mean: 7.738333, max: 7.753419
13:09:52 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:09:52 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:09:52 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:09:52 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:09:52 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.180813 m/s - 0.181479 m/s)
13:09:52 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:09:52 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:09:52 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:09:52 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:09:52 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:09:52 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:09:52 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:09:52 INFO opendrift.models.basemodel:2038: 2024-11-08 11:00:00 - step 12 of 71 - 1000 active elements (0 deactivated)
13:09:52 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:09:52 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:09:52 DEBUG opendrift.models.basemodel:2057: 60.18760344549666 <- latitude -> 60.19705012079845
13:09:52 DEBUG opendrift.models.basemodel:2062: 4.587788714593195 <- longitude -> 4.599803224057514
13:09:52 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:09:52 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:09:52 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:09:52 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:09:52 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:09:52 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:09:52 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:09:52 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:09:52 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:09:52 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:09:52 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:09:52 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:09:52 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:09:52 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:09:52 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:09:52 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:09:52 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:09:52 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:09:52 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:09:52 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:09:52 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-08 11:00:00 (before)
2024-11-08 12:00:00 (after)
13:09:53 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:09:53 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:09:53 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:09:53 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:09:53 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:09:53 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 24x23x2) for time before (2024-11-08 11:00:00)
13:09:53 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-08 11:00:00) in space (linearNDFast)
13:09:53 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:09:53 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:09:53 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.41222214438733 and -65.40020762583734 degrees.
13:09:53 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.41222214438733 and -65.40020762583734 degrees.
13:09:53 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:09:53 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:09:53 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:09:53 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:09:53 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:09:53 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:09:53 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.0195111 (min) 0.0322372 (max)
13:09:53 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.50648 (min) 0.529441 (max)
13:09:53 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.327542 (min) -0.323516 (max)
13:09:53 DEBUG opendrift.models.basemodel.environment:905: x_wind: -0.533216 (min) -0.440119 (max)
13:09:53 DEBUG opendrift.models.basemodel.environment:905: y_wind: 8.44802 (min) 8.46745 (max)
13:09:53 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 4.35731e-05 (min) 4.38124e-05 (max)
13:09:53 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:09:53 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:09:53 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:09:53 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:09:53 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:09:53 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:09:53 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:09:53 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:09:53 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:09:53 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:09:53 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:09:53 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:09:53 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:09:53 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:09:53 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:09:53 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:09:53 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:09:53 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 299.964 (min) 300.155 (max)
13:09:53 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:09:53 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:09:53 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.760656, mean: 1.766257, max: 1.770452
13:09:53 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:09:53 DEBUG opendrift.models.physics_methods:1061: min: 7.228810, mean: 7.240299, max: 7.248892
13:09:53 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.228810, mean: 7.240299, max: 7.248892
13:09:53 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:09:53 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:09:53 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:09:53 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:09:53 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.169200 m/s - 0.169670 m/s)
13:09:53 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:09:53 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:09:53 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:09:53 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:09:53 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:09:53 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:09:53 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:09:53 INFO opendrift.models.basemodel:2038: 2024-11-08 12:00:00 - step 13 of 71 - 1000 active elements (0 deactivated)
13:09:53 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:09:53 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:09:53 DEBUG opendrift.models.basemodel:2057: 60.20957227493833 <- latitude -> 60.219551339897585
13:09:53 DEBUG opendrift.models.basemodel:2062: 4.5884702173290535 <- longitude -> 4.601203943775781
13:09:53 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:09:53 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:09:53 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:09:53 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:09:53 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:09:53 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:09:53 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:09:53 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:09:53 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:09:53 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:09:53 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:09:53 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:09:53 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:09:53 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:09:53 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:09:53 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:09:53 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:09:53 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:09:53 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:09:53 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:09:53 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-08 12:00:00 (before)
2024-11-08 13:00:00 (after)
13:09:54 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:09:54 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:09:54 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:09:54 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:09:54 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:09:54 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 24x23x2) for time before (2024-11-08 12:00:00)
13:09:54 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-08 12:00:00) in space (linearNDFast)
13:09:54 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:09:54 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:09:54 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.41154063706685 and -65.39880690949215 degrees.
13:09:54 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.41154063706685 and -65.39880690949215 degrees.
13:09:54 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:09:54 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:09:54 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:09:54 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:09:54 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:09:54 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:09:54 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.0428372 (min) 0.0452305 (max)
13:09:54 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.473903 (min) 0.49064 (max)
13:09:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.180207 (min) -0.175704 (max)
13:09:54 DEBUG opendrift.models.basemodel.environment:905: x_wind: -0.605303 (min) -0.4504 (max)
13:09:54 DEBUG opendrift.models.basemodel.environment:905: y_wind: 7.29008 (min) 7.36271 (max)
13:09:54 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 3.86808e-05 (min) 3.87486e-05 (max)
13:09:54 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:09:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:09:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:09:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:09:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:09:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:09:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:09:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:09:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:09:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:09:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:09:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:09:54 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:09:54 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:09:54 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:09:54 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:09:54 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:09:54 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 300.5 (min) 300.572 (max)
13:09:54 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:09:54 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:09:54 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.313091, mean: 1.325953, max: 1.342248
13:09:54 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:09:54 DEBUG opendrift.models.physics_methods:1061: min: 6.242765, mean: 6.273255, max: 6.311693
13:09:54 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 6.242765, mean: 6.273255, max: 6.311693
13:09:54 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:09:54 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:09:54 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:09:54 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:09:54 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.146120 m/s - 0.147733 m/s)
13:09:54 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:09:54 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:09:54 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:09:54 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:09:54 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:09:54 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:09:54 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:09:54 INFO opendrift.models.basemodel:2038: 2024-11-08 13:00:00 - step 14 of 71 - 1000 active elements (0 deactivated)
13:09:54 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:09:54 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:09:54 DEBUG opendrift.models.basemodel:2057: 60.22963705673152 <- latitude -> 60.24014176596606
13:09:54 DEBUG opendrift.models.basemodel:2062: 4.590823095632945 <- longitude -> 4.603242597773122
13:09:54 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:09:54 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:09:54 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:09:54 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:09:54 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:09:54 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:09:54 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:09:54 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:09:54 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:09:54 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:09:54 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:09:54 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:09:54 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:09:54 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:09:54 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:09:54 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:09:54 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:09:54 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:09:54 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:09:54 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:09:54 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-08 13:00:00 (before)
2024-11-08 14:00:00 (after)
13:09:56 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:09:56 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:09:56 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:09:56 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:09:56 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:09:56 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 23x22x2) for time before (2024-11-08 13:00:00)
13:09:56 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-08 13:00:00) in space (linearNDFast)
13:09:56 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:09:56 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:09:56 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.40918774700498 and -65.39676823275539 degrees.
13:09:56 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.40918774700498 and -65.39676823275539 degrees.
13:09:56 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:09:56 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:09:56 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:09:56 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:09:56 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:09:56 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:09:56 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.0603533 (min) 0.083146 (max)
13:09:56 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.413737 (min) 0.423446 (max)
13:09:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.0722653 (min) -0.0669551 (max)
13:09:56 DEBUG opendrift.models.basemodel.environment:905: x_wind: 1.12914 (min) 1.17904 (max)
13:09:56 DEBUG opendrift.models.basemodel.environment:905: y_wind: 7.05071 (min) 7.09407 (max)
13:09:56 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 2.22437e-05 (min) 2.2296e-05 (max)
13:09:56 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:09:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:09:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:09:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:09:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:09:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:09:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:09:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:09:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:09:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:09:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:09:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:09:56 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:09:56 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:09:56 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:09:56 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:09:56 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:09:56 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 300.554 (min) 300.661 (max)
13:09:56 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:09:56 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:09:56 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.254292, mean: 1.263647, max: 1.271780
13:09:56 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:09:56 DEBUG opendrift.models.physics_methods:1061: min: 6.101393, mean: 6.124099, max: 6.143778
13:09:56 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 6.101393, mean: 6.124099, max: 6.143778
13:09:56 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:09:56 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:09:56 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:09:56 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:09:56 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.142811 m/s - 0.143803 m/s)
13:09:56 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:09:56 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:09:56 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:09:56 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:09:56 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:09:56 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:09:56 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:09:56 INFO opendrift.models.basemodel:2038: 2024-11-08 14:00:00 - step 15 of 71 - 1000 active elements (0 deactivated)
13:09:56 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:09:56 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:09:56 DEBUG opendrift.models.basemodel:2057: 60.24761980824006 <- latitude -> 60.25837857287604
13:09:56 DEBUG opendrift.models.basemodel:2062: 4.597705800079597 <- longitude -> 4.608678534247586
13:09:56 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:09:56 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:09:56 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:09:56 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:09:56 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:09:56 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:09:56 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:09:56 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:09:56 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:09:56 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:09:56 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:09:56 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:09:56 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:09:56 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:09:56 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:09:56 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:09:56 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:09:56 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:09:56 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:09:56 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:09:56 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-08 14:00:00 (before)
2024-11-08 15:00:00 (after)
13:09:57 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:09:57 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:09:57 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:09:57 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:09:57 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:09:57 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 24x22x2) for time before (2024-11-08 14:00:00)
13:09:57 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-08 14:00:00) in space (linearNDFast)
13:09:57 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:09:57 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:09:57 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.40230502973456 and -65.39133229376203 degrees.
13:09:57 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.40230502973456 and -65.39133229376203 degrees.
13:09:57 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:09:57 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:09:57 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:09:57 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:09:57 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:09:57 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:09:57 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.0397439 (min) 0.0801057 (max)
13:09:57 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.336072 (min) 0.359803 (max)
13:09:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.027682 (min) -0.0232619 (max)
13:09:57 DEBUG opendrift.models.basemodel.environment:905: x_wind: -0.331689 (min) -0.30619 (max)
13:09:57 DEBUG opendrift.models.basemodel.environment:905: y_wind: 7.11072 (min) 7.12949 (max)
13:09:57 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 7.9697e-07 (min) 1.17257e-06 (max)
13:09:57 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:09:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:09:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:09:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:09:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:09:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:09:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:09:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:09:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:09:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:09:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:09:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:09:57 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:09:57 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:09:57 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:09:57 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:09:57 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:09:57 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 300.493 (min) 300.81 (max)
13:09:57 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:09:57 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:09:57 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.246385, mean: 1.250243, max: 1.252767
13:09:57 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:09:57 DEBUG opendrift.models.physics_methods:1061: min: 6.082131, mean: 6.091535, max: 6.097682
13:09:57 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 6.082131, mean: 6.091535, max: 6.097682
13:09:57 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:09:57 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:09:57 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:09:57 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:09:57 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.142360 m/s - 0.142724 m/s)
13:09:57 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:09:57 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:09:57 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:09:57 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:09:57 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:09:57 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:09:57 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:09:57 INFO opendrift.models.basemodel:2038: 2024-11-08 15:00:00 - step 16 of 71 - 1000 active elements (0 deactivated)
13:09:57 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:09:57 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:09:57 DEBUG opendrift.models.basemodel:2057: 60.26316290831889 <- latitude -> 60.27456219420222
13:09:57 DEBUG opendrift.models.basemodel:2062: 4.602506803495532 <- longitude -> 4.610845153125155
13:09:57 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:09:57 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:09:57 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:09:57 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:09:57 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:09:57 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:09:57 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:09:57 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:09:57 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:09:57 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:09:57 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:09:57 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:09:57 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:09:57 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:09:57 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:09:57 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:09:57 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:09:57 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:09:57 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:09:57 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:09:57 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-08 15:00:00 (before)
2024-11-08 16:00:00 (after)
13:09:58 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:09:58 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:09:58 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:09:58 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:09:58 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:09:58 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 24x22x2) for time before (2024-11-08 15:00:00)
13:09:58 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-08 15:00:00) in space (linearNDFast)
13:09:58 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:09:58 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:09:58 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.39750402377177 and -65.38916567197685 degrees.
13:09:58 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.39750402377177 and -65.38916567197685 degrees.
13:09:58 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:09:58 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:09:58 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:09:58 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:09:58 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:09:58 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:09:58 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.0120066 (min) 0.0566686 (max)
13:09:58 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.27634 (min) 0.318978 (max)
13:09:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.0640669 (min) -0.059726 (max)
13:09:58 DEBUG opendrift.models.basemodel.environment:905: x_wind: -1.31621 (min) -1.28057 (max)
13:09:58 DEBUG opendrift.models.basemodel.environment:905: y_wind: 7.38554 (min) 7.46621 (max)
13:09:58 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -2.12308e-05 (min) -2.09597e-05 (max)
13:09:58 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:09:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:09:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:09:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:09:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:09:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:09:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:09:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:09:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:09:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:09:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:09:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:09:58 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:09:58 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:09:58 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:09:58 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:09:58 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:09:58 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 300.758 (min) 301.893 (max)
13:09:58 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:09:58 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:09:58 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.382685, mean: 1.395324, max: 1.413654
13:09:58 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:09:58 DEBUG opendrift.models.physics_methods:1061: min: 6.406064, mean: 6.435262, max: 6.477405
13:09:58 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 6.406064, mean: 6.435262, max: 6.477405
13:09:58 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:09:58 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:09:58 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:09:58 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:09:58 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.149942 m/s - 0.151612 m/s)
13:09:58 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:09:58 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:09:58 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:09:58 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:09:58 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:09:58 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:09:58 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:09:58 INFO opendrift.models.basemodel:2038: 2024-11-08 16:00:00 - step 17 of 71 - 1000 active elements (0 deactivated)
13:09:58 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:09:58 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:09:58 DEBUG opendrift.models.basemodel:2057: 60.27702968351157 <- latitude -> 60.28961834881399
13:09:58 DEBUG opendrift.models.basemodel:2062: 4.604436715131171 <- longitude -> 4.6099131734216146
13:09:58 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:09:58 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:09:58 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:09:58 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:09:58 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:09:58 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:09:58 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:09:58 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:09:58 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:09:58 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:09:58 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:09:58 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:09:58 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:09:58 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:09:58 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:09:58 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:09:58 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:09:58 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:09:58 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:09:58 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:09:58 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-08 16:00:00 (before)
2024-11-08 17:00:00 (after)
13:09:59 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:09:59 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:09:59 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:09:59 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:09:59 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:09:59 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 24x22x2) for time before (2024-11-08 16:00:00)
13:09:59 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-08 16:00:00) in space (linearNDFast)
13:09:59 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:09:59 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:09:59 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.39557410447813 and -65.3900976504746 degrees.
13:09:59 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.39557410447813 and -65.3900976504746 degrees.
13:09:59 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:09:59 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:09:59 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:09:59 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:09:59 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:09:59 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:09:59 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.0264752 (min) 0.0167455 (max)
13:09:59 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.237779 (min) 0.293685 (max)
13:09:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.173279 (min) -0.169248 (max)
13:09:59 DEBUG opendrift.models.basemodel.environment:905: x_wind: -1.36998 (min) -1.29839 (max)
13:09:59 DEBUG opendrift.models.basemodel.environment:905: y_wind: 7.17417 (min) 7.22153 (max)
13:09:59 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -4.03643e-05 (min) -4.01224e-05 (max)
13:09:59 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:09:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:09:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:09:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:09:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:09:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:09:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:09:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:09:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:09:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:09:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:09:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:09:59 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:09:59 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:09:59 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:09:59 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:09:59 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:09:59 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 301.647 (min) 303.534 (max)
13:09:59 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:09:59 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:09:59 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.307600, mean: 1.317686, max: 1.329074
13:09:59 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:09:59 DEBUG opendrift.models.physics_methods:1061: min: 6.229699, mean: 6.253674, max: 6.280643
13:09:59 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 6.229699, mean: 6.253674, max: 6.280643
13:09:59 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:09:59 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:09:59 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:09:59 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:09:59 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.145814 m/s - 0.147007 m/s)
13:09:59 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:09:59 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:09:59 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:09:59 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:09:59 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:09:59 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:09:59 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:09:59 INFO opendrift.models.basemodel:2038: 2024-11-08 17:00:00 - step 18 of 71 - 1000 active elements (0 deactivated)
13:09:59 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:09:59 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:09:59 DEBUG opendrift.models.basemodel:2057: 60.289513636388946 <- latitude -> 60.30369716132377
13:09:59 DEBUG opendrift.models.basemodel:2062: 4.60351720847058 <- longitude -> 4.606724104124634
13:09:59 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:09:59 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:09:59 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:09:59 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:09:59 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:09:59 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:09:59 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:09:59 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:09:59 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:09:59 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:09:59 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:09:59 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:09:59 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:09:59 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:09:59 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:09:59 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:09:59 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:09:59 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:09:59 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:09:59 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:09:59 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-08 17:00:00 (before)
2024-11-08 18:00:00 (after)
13:10:01 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:10:01 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:10:01 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:10:01 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:10:01 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:10:01 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-11-08 17:00:00)
13:10:01 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-08 17:00:00) in space (linearNDFast)
13:10:01 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:10:01 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:10:01 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.39649361136543 and -65.39328671775665 degrees.
13:10:01 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.39649361136543 and -65.39328671775665 degrees.
13:10:01 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:01 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:10:01 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:10:01 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:10:01 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:10:01 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:10:01 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.0993394 (min) -0.0595677 (max)
13:10:01 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.244761 (min) 0.290044 (max)
13:10:01 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.336444 (min) -0.332406 (max)
13:10:01 DEBUG opendrift.models.basemodel.environment:905: x_wind: -0.956547 (min) -0.72637 (max)
13:10:01 DEBUG opendrift.models.basemodel.environment:905: y_wind: 7.44826 (min) 7.46925 (max)
13:10:01 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -5.03024e-05 (min) -5.02744e-05 (max)
13:10:01 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:10:01 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:10:01 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:10:01 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:10:01 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:10:01 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:10:01 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:10:01 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:10:01 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:10:01 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:10:01 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:10:01 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:10:01 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:10:01 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:10:01 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:10:01 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:10:01 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:10:01 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 302.767 (min) 304.948 (max)
13:10:01 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:10:01 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:10:01 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.378454, mean: 1.386067, max: 1.392974
13:10:01 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:10:01 DEBUG opendrift.models.physics_methods:1061: min: 6.396254, mean: 6.413891, max: 6.429854
13:10:01 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 6.396254, mean: 6.413891, max: 6.429854
13:10:01 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:10:01 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:01 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:10:01 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:10:01 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.149713 m/s - 0.150499 m/s)
13:10:01 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:10:01 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:10:01 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:10:01 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:10:01 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:10:01 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:01 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:10:01 INFO opendrift.models.basemodel:2038: 2024-11-08 18:00:00 - step 19 of 71 - 1000 active elements (0 deactivated)
13:10:01 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:10:01 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:10:01 DEBUG opendrift.models.basemodel:2057: 60.30225994403885 <- latitude -> 60.31779803483877
13:10:01 DEBUG opendrift.models.basemodel:2062: 4.597499237377277 <- longitude -> 4.600727809421391
13:10:01 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:10:01 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:10:01 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:01 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:10:01 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:01 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:10:01 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:01 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:01 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:10:01 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:10:01 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:10:01 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:10:01 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:01 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:01 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:10:01 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:01 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:10:01 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:01 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:01 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:10:01 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-08 18:00:00 (before)
2024-11-08 19:00:00 (after)
13:10:04 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:10:04 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:10:04 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:10:04 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:10:04 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:10:04 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 24x23x2) for time before (2024-11-08 18:00:00)
13:10:04 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-08 18:00:00) in space (linearNDFast)
13:10:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:10:04 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:10:04 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.40251157468188 and -65.39928300877888 degrees.
13:10:04 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.40251157468188 and -65.39928300877888 degrees.
13:10:04 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:04 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:10:04 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:10:04 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:10:04 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:10:04 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:10:04 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.158106 (min) -0.114636 (max)
13:10:04 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.250424 (min) 0.299072 (max)
13:10:04 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.511201 (min) -0.508088 (max)
13:10:04 DEBUG opendrift.models.basemodel.environment:905: x_wind: 0.0539844 (min) 0.246463 (max)
13:10:04 DEBUG opendrift.models.basemodel.environment:905: y_wind: 5.44228 (min) 5.68111 (max)
13:10:04 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -4.74459e-05 (min) -4.67597e-05 (max)
13:10:04 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:10:04 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:10:04 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:10:04 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:10:04 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:10:04 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:10:04 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:10:04 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:10:04 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:10:04 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:10:04 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:10:04 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:10:04 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:10:04 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:10:04 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:10:04 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:10:04 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:10:04 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 303.554 (min) 305.032 (max)
13:10:04 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:10:04 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:10:04 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.728684, mean: 0.760450, max: 0.795461
13:10:04 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:10:04 DEBUG opendrift.models.physics_methods:1061: min: 4.650494, mean: 4.750643, max: 4.858911
13:10:04 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 4.650494, mean: 4.750643, max: 4.858911
13:10:04 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:10:04 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:04 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:10:04 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:10:04 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.108851 m/s - 0.113729 m/s)
13:10:04 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:10:04 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:10:04 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:10:04 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:10:04 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:10:04 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:04 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:10:04 INFO opendrift.models.basemodel:2038: 2024-11-08 19:00:00 - step 20 of 71 - 1000 active elements (0 deactivated)
13:10:04 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:10:04 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:10:04 DEBUG opendrift.models.basemodel:2057: 60.31386806914074 <- latitude -> 60.33104732865978
13:10:04 DEBUG opendrift.models.basemodel:2062: 4.587731616253359 <- longitude -> 4.592995429190483
13:10:04 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:10:04 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:10:04 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:04 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:10:04 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:04 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:10:04 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:04 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:04 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:10:04 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:10:04 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:10:04 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:10:04 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:04 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:04 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:10:04 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:04 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:10:04 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:04 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:04 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:10:04 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-08 19:00:00 (before)
2024-11-08 20:00:00 (after)
13:10:05 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:10:05 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:10:05 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:10:05 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:10:05 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:10:05 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 24x23x2) for time before (2024-11-08 19:00:00)
13:10:05 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-08 19:00:00) in space (linearNDFast)
13:10:05 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:10:05 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:10:05 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.41227918411857 and -65.40701537956551 degrees.
13:10:05 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.41227918411857 and -65.40701537956551 degrees.
13:10:05 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:05 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:10:05 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:10:05 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:10:05 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:10:05 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:10:05 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.191223 (min) -0.151376 (max)
13:10:05 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.307842 (min) 0.368293 (max)
13:10:05 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.658683 (min) -0.657867 (max)
13:10:05 DEBUG opendrift.models.basemodel.environment:905: x_wind: -1.6248 (min) -1.61391 (max)
13:10:05 DEBUG opendrift.models.basemodel.environment:905: y_wind: 6.06872 (min) 6.12339 (max)
13:10:05 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -3.42225e-05 (min) -3.3666e-05 (max)
13:10:05 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:10:05 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:10:05 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:10:05 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:10:05 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:10:05 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:10:05 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:10:05 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:10:05 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:10:05 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:10:05 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:10:05 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:10:05 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:10:05 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:10:05 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:10:05 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:10:05 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:10:05 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 303.327 (min) 304.027 (max)
13:10:05 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:10:05 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:10:05 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.970131, mean: 0.976961, max: 0.986771
13:10:05 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:10:05 DEBUG opendrift.models.physics_methods:1061: min: 5.365927, mean: 5.384777, max: 5.411750
13:10:05 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 5.365927, mean: 5.384777, max: 5.411750
13:10:05 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:10:05 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:05 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:10:05 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:10:05 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.125597 m/s - 0.126669 m/s)
13:10:05 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:10:05 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:10:05 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:10:05 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:10:05 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:10:05 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:05 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:10:05 INFO opendrift.models.basemodel:2038: 2024-11-08 20:00:00 - step 21 of 71 - 1000 active elements (0 deactivated)
13:10:05 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:10:05 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:10:05 DEBUG opendrift.models.basemodel:2057: 60.32773707928281 <- latitude -> 60.346873010619404
13:10:05 DEBUG opendrift.models.basemodel:2062: 4.573338675254673 <- longitude -> 4.5808643105199645
13:10:05 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:10:05 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:10:05 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:05 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:10:05 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:05 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:10:05 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:05 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:05 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:10:05 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:10:05 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:10:05 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:10:05 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:05 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:05 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:10:05 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:05 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:10:05 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:05 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:05 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:10:05 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-08 20:00:00 (before)
2024-11-08 21:00:00 (after)
13:10:06 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:10:06 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:10:06 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:10:06 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:10:06 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:10:06 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 24x24x2) for time before (2024-11-08 20:00:00)
13:10:06 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-08 20:00:00) in space (linearNDFast)
13:10:06 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:10:06 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:10:06 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.42667212105088 and -65.41914650813791 degrees.
13:10:06 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.42667212105088 and -65.41914650813791 degrees.
13:10:06 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:06 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:10:06 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:10:06 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:10:06 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:10:06 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:10:06 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.195744 (min) -0.165125 (max)
13:10:06 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.384105 (min) 0.444365 (max)
13:10:06 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.742693 (min) -0.740907 (max)
13:10:06 DEBUG opendrift.models.basemodel.environment:905: x_wind: -1.81796 (min) -1.66848 (max)
13:10:06 DEBUG opendrift.models.basemodel.environment:905: y_wind: 5.39999 (min) 5.44184 (max)
13:10:06 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -1.03808e-05 (min) -1.02504e-05 (max)
13:10:06 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:10:06 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:10:06 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:10:06 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:10:06 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:10:06 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:10:06 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:10:06 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:10:06 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:10:06 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:10:06 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:10:06 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:10:06 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:10:06 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:10:06 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:10:06 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:10:06 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:10:06 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 301.447 (min) 302.311 (max)
13:10:06 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:10:06 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:10:06 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.786543, mean: 0.796360, max: 0.808200
13:10:06 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:10:06 DEBUG opendrift.models.physics_methods:1061: min: 4.831599, mean: 4.861642, max: 4.897664
13:10:06 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 4.831599, mean: 4.861642, max: 4.897664
13:10:06 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:10:06 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:06 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:10:06 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:10:06 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.113090 m/s - 0.114636 m/s)
13:10:06 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:10:06 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:10:06 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:10:06 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:10:06 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:10:06 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:06 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:10:06 INFO opendrift.models.basemodel:2038: 2024-11-08 21:00:00 - step 22 of 71 - 1000 active elements (0 deactivated)
13:10:06 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:10:06 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:10:06 DEBUG opendrift.models.basemodel:2057: 60.343645467978156 <- latitude -> 60.364740576346286
13:10:06 DEBUG opendrift.models.basemodel:2062: 4.558258201973062 <- longitude -> 4.56792463784403
13:10:06 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:10:06 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:10:06 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:06 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:10:06 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:06 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:10:06 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:06 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:06 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:10:06 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:10:06 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:10:06 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:10:06 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:06 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:06 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:10:06 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:06 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:10:06 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:06 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:06 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:10:06 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-08 21:00:00 (before)
2024-11-08 22:00:00 (after)
13:10:07 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:10:07 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:10:07 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:10:07 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:10:07 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:10:07 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 25x24x2) for time before (2024-11-08 21:00:00)
13:10:07 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-08 21:00:00) in space (linearNDFast)
13:10:07 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:10:07 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:10:07 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.44175260216996 and -65.4320861749166 degrees.
13:10:07 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.44175260216996 and -65.4320861749166 degrees.
13:10:07 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:07 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:10:07 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:10:07 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:10:07 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:10:07 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:10:07 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.170087 (min) -0.15139 (max)
13:10:07 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.451981 (min) 0.501011 (max)
13:10:07 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.738005 (min) -0.736901 (max)
13:10:07 DEBUG opendrift.models.basemodel.environment:905: x_wind: -2.01615 (min) -1.89737 (max)
13:10:07 DEBUG opendrift.models.basemodel.environment:905: y_wind: 4.66582 (min) 4.75353 (max)
13:10:07 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 1.28934e-05 (min) 1.31556e-05 (max)
13:10:07 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:10:07 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:10:07 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:10:07 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:10:07 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:10:07 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:10:07 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:10:07 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:10:07 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:10:07 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:10:07 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:10:07 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:10:07 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:10:07 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:10:07 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:10:07 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:10:07 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:10:07 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 300.312 (min) 300.804 (max)
13:10:07 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:10:07 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:10:07 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.625732, mean: 0.638550, max: 0.655102
13:10:07 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:10:07 DEBUG opendrift.models.physics_methods:1061: min: 4.309467, mean: 4.353350, max: 4.409447
13:10:07 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 4.309467, mean: 4.353350, max: 4.409447
13:10:07 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:10:07 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:07 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:10:07 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:10:07 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.100869 m/s - 0.103209 m/s)
13:10:07 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:10:07 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:10:07 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:10:07 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:10:07 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:10:07 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:07 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:10:07 INFO opendrift.models.basemodel:2038: 2024-11-08 22:00:00 - step 23 of 71 - 1000 active elements (0 deactivated)
13:10:07 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:10:07 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:10:07 DEBUG opendrift.models.basemodel:2057: 60.3612702289567 <- latitude -> 60.38399984524709
13:10:07 DEBUG opendrift.models.basemodel:2062: 4.5445627666524455 <- longitude -> 4.555552359799075
13:10:07 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:10:07 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:10:07 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:07 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:10:07 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:07 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:10:07 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:07 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:07 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:10:07 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:10:07 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:10:07 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:10:07 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:07 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:07 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:10:07 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:07 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:10:07 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:07 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:07 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:10:07 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-08 22:00:00 (before)
2024-11-08 23:00:00 (after)
13:10:08 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:10:08 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:10:08 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:10:08 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:10:08 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:10:08 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 25x24x2) for time before (2024-11-08 22:00:00)
13:10:08 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-08 22:00:00) in space (linearNDFast)
13:10:08 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:10:08 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:10:08 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.45544802497683 and -65.44445844115101 degrees.
13:10:08 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.45544802497683 and -65.44445844115101 degrees.
13:10:08 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:08 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:10:08 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:10:08 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:10:08 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:10:08 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:10:08 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.120819 (min) -0.106377 (max)
13:10:08 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.489934 (min) 0.539552 (max)
13:10:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.650238 (min) -0.648661 (max)
13:10:08 DEBUG opendrift.models.basemodel.environment:905: x_wind: -3.06983 (min) -3.03859 (max)
13:10:08 DEBUG opendrift.models.basemodel.environment:905: y_wind: 4.63115 (min) 4.66013 (max)
13:10:08 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 3.51239e-05 (min) 3.55337e-05 (max)
13:10:08 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:10:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:10:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:10:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:10:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:10:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:10:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:10:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:10:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:10:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:10:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:10:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:10:08 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:10:08 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:10:08 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:10:08 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:10:08 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:10:08 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 300.003 (min) 300.876 (max)
13:10:08 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:10:08 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:10:08 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.756459, mean: 0.760367, max: 0.764345
13:10:08 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:10:08 DEBUG opendrift.models.physics_methods:1061: min: 4.738298, mean: 4.750517, max: 4.762932
13:10:08 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 4.738298, mean: 4.750517, max: 4.762932
13:10:08 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:10:08 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:08 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:10:08 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:10:08 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.110906 m/s - 0.111483 m/s)
13:10:08 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:10:08 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:10:08 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:10:08 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:10:08 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:10:08 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:08 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:10:08 INFO opendrift.models.basemodel:2038: 2024-11-08 23:00:00 - step 24 of 71 - 1000 active elements (0 deactivated)
13:10:08 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:10:08 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:10:08 DEBUG opendrift.models.basemodel:2057: 60.38011432579155 <- latitude -> 60.404438271775305
13:10:08 DEBUG opendrift.models.basemodel:2062: 4.533376169373546 <- longitude -> 4.54399786767642
13:10:08 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:10:08 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:10:08 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:08 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:10:08 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:08 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:10:08 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:08 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:08 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:10:08 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:10:08 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:10:08 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:10:08 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:08 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:08 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:10:08 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:08 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:10:08 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:08 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:08 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:10:08 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-08 23:00:00 (before)
2024-11-09 00:00:00 (after)
13:10:09 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:10:09 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:10:09 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:10:09 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:10:09 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:10:09 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 25x24x2) for time before (2024-11-08 23:00:00)
13:10:09 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-08 23:00:00) in space (linearNDFast)
13:10:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:10:09 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:10:09 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.46663462264841 and -65.45601292644099 degrees.
13:10:09 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.46663462264841 and -65.45601292644099 degrees.
13:10:09 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:09 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:10:09 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:10:09 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:10:09 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:10:09 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:10:09 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.0663884 (min) -0.0486802 (max)
13:10:09 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.501385 (min) 0.56234 (max)
13:10:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.503572 (min) -0.501524 (max)
13:10:09 DEBUG opendrift.models.basemodel.environment:905: x_wind: -3.97745 (min) -3.59729 (max)
13:10:09 DEBUG opendrift.models.basemodel.environment:905: y_wind: 5.25221 (min) 5.65507 (max)
13:10:09 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 4.54168e-05 (min) 4.55e-05 (max)
13:10:09 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:10:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:10:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:10:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:10:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:10:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:10:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:10:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:10:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:10:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:10:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:10:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:10:09 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:10:09 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:10:09 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:10:09 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:10:09 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:10:09 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 300.405 (min) 302.101 (max)
13:10:09 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:10:09 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:10:09 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.996944, mean: 1.101405, max: 1.175485
13:10:09 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:10:09 DEBUG opendrift.models.physics_methods:1061: min: 5.439576, mean: 5.716862, max: 5.906606
13:10:09 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 5.439576, mean: 5.716862, max: 5.906606
13:10:09 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:10:09 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:09 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:10:09 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:10:09 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.127320 m/s - 0.138252 m/s)
13:10:09 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:10:09 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:10:09 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:10:09 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:10:09 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:10:09 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:09 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:10:09 INFO opendrift.models.basemodel:2038: 2024-11-09 00:00:00 - step 25 of 71 - 1000 active elements (0 deactivated)
13:10:09 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:10:09 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:10:09 DEBUG opendrift.models.basemodel:2057: 60.39999999175152 <- latitude -> 60.426001558488466
13:10:09 DEBUG opendrift.models.basemodel:2062: 4.524637875182805 <- longitude -> 4.534880870677494
13:10:09 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:10:09 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:10:09 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:09 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:10:09 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:09 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:10:09 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:09 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:09 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:10:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:10:09 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:10:09 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:10:09 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:09 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:09 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:10:09 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:09 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:10:09 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:09 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:09 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:10:09 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-09 00:00:00 (before)
2024-11-09 01:00:00 (after)
13:10:10 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:10:10 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:10:10 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:10:10 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:10:10 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:10:10 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 25x24x2) for time before (2024-11-09 00:00:00)
13:10:10 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-09 00:00:00) in space (linearNDFast)
13:10:10 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:10:10 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:10:10 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.47537290913665 and -65.4651299176604 degrees.
13:10:10 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.47537290913665 and -65.4651299176604 degrees.
13:10:10 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:10 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:10:10 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:10:10 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:10:10 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:10:10 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:10:10 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.0490219 (min) -0.0209792 (max)
13:10:10 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.481493 (min) 0.560256 (max)
13:10:10 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.342902 (min) -0.34051 (max)
13:10:10 DEBUG opendrift.models.basemodel.environment:905: x_wind: -4.04381 (min) -3.99958 (max)
13:10:10 DEBUG opendrift.models.basemodel.environment:905: y_wind: 4.0533 (min) 4.14959 (max)
13:10:10 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 6.66376e-07 (min) 7.28628e-07 (max)
13:10:10 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:10:10 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:10:10 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:10:10 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:10:10 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:10:10 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:10:10 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:10:10 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:10:10 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:10:10 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:10:10 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:10:10 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:10:10 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:10:10 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:10:10 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:10:10 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:10:10 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:10:10 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 301.583 (min) 303.546 (max)
13:10:10 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:10:10 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:10:10 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.800891, mean: 0.815149, max: 0.820732
13:10:10 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:10:10 DEBUG opendrift.models.physics_methods:1061: min: 4.875468, mean: 4.918660, max: 4.935489
13:10:10 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 4.875468, mean: 4.918660, max: 4.935489
13:10:10 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:10:10 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:10 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:10:10 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:10:10 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.114117 m/s - 0.115522 m/s)
13:10:10 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:10:10 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:10:10 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:10:10 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:10:10 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:10:10 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:10 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:10:10 INFO opendrift.models.basemodel:2038: 2024-11-09 01:00:00 - step 26 of 71 - 1000 active elements (0 deactivated)
13:10:10 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:10:10 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:10:10 DEBUG opendrift.models.basemodel:2057: 60.418238173406905 <- latitude -> 60.44672401805921
13:10:10 DEBUG opendrift.models.basemodel:2062: 4.516247018208514 <- longitude -> 4.52806203181835
13:10:10 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:10:10 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:10:10 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:10 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:10:10 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:10 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:10:10 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:10 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:10 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:10:10 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:10:10 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:10:10 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:10:10 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:10 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:10 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:10:10 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:10 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:10:10 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:10 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:10 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:10:10 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-09 01:00:00 (before)
2024-11-09 02:00:00 (after)
13:10:10 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:10:10 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:10:10 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:10:10 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:10:10 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:10:10 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 25x24x2) for time before (2024-11-09 01:00:00)
13:10:10 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-09 01:00:00) in space (linearNDFast)
13:10:10 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:10:10 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:10:11 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.48376375744246 and -65.47194875042166 degrees.
13:10:11 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.48376375744246 and -65.47194875042166 degrees.
13:10:11 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:11 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:10:11 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:10:11 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:10:11 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:10:11 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:10:11 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.0217015 (min) -0.0139634 (max)
13:10:11 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.437744 (min) 0.509269 (max)
13:10:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.201786 (min) -0.197529 (max)
13:10:11 DEBUG opendrift.models.basemodel.environment:905: x_wind: -3.62735 (min) -3.32062 (max)
13:10:11 DEBUG opendrift.models.basemodel.environment:905: y_wind: 4.20376 (min) 4.40683 (max)
13:10:11 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 3.32706e-05 (min) 3.42841e-05 (max)
13:10:11 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:10:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:10:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:10:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:10:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:10:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:10:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:10:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:10:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:10:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:10:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:10:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:10:11 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:10:11 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:10:11 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:10:11 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:10:11 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:10:11 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 302.931 (min) 305 (max)
13:10:11 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:10:11 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:10:11 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.748797, mean: 0.751914, max: 0.758399
13:10:11 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:10:11 DEBUG opendrift.models.physics_methods:1061: min: 4.714239, mean: 4.724038, max: 4.744368
13:10:11 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 4.714239, mean: 4.724038, max: 4.744368
13:10:11 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:10:11 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:11 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:10:11 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:10:11 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.110343 m/s - 0.111048 m/s)
13:10:11 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:10:11 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:10:11 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:10:11 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:10:11 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:10:11 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:11 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:10:11 INFO opendrift.models.basemodel:2038: 2024-11-09 02:00:00 - step 27 of 71 - 1000 active elements (0 deactivated)
13:10:11 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:10:11 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:10:11 DEBUG opendrift.models.basemodel:2057: 60.43509823831183 <- latitude -> 60.46601388564579
13:10:11 DEBUG opendrift.models.basemodel:2062: 4.51098741707206 <- longitude -> 4.522167929814726
13:10:11 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:10:11 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:10:11 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:11 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:10:11 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:11 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:10:11 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:11 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:11 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:10:11 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:10:11 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:10:11 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:10:11 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:11 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:11 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:10:11 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:11 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:10:11 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:11 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:11 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:10:11 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-09 02:00:00 (before)
2024-11-09 03:00:00 (after)
13:10:11 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:10:11 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:10:11 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:10:11 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:10:11 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:10:11 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 25x24x2) for time before (2024-11-09 02:00:00)
13:10:11 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-09 02:00:00) in space (linearNDFast)
13:10:11 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:10:11 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:10:11 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.48902335391337 and -65.47784283916737 degrees.
13:10:11 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.48902335391337 and -65.47784283916737 degrees.
13:10:11 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:11 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:10:11 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:10:11 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:10:11 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:10:11 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:10:11 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.00166918 (min) 0.0115814 (max)
13:10:11 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.375073 (min) 0.445272 (max)
13:10:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.111556 (min) -0.104712 (max)
13:10:11 DEBUG opendrift.models.basemodel.environment:905: x_wind: -3.52554 (min) -3.1628 (max)
13:10:11 DEBUG opendrift.models.basemodel.environment:905: y_wind: 4.95409 (min) 4.97795 (max)
13:10:11 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 1.07665e-05 (min) 3.04539e-05 (max)
13:10:11 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:10:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:10:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:10:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:10:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:10:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:10:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:10:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:10:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:10:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:10:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:10:11 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:10:11 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:10:11 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:10:11 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:10:11 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:10:11 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:10:11 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 304.153 (min) 307.484 (max)
13:10:11 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:10:11 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:10:11 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.849838, mean: 0.885944, max: 0.912110
13:10:11 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:10:11 DEBUG opendrift.models.physics_methods:1061: min: 5.022243, mean: 5.127727, max: 5.202992
13:10:11 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 5.022243, mean: 5.127727, max: 5.202992
13:10:11 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:10:11 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:11 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:10:11 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:10:11 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.117552 m/s - 0.121783 m/s)
13:10:11 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:10:11 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:10:11 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:10:11 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:10:11 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:10:11 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:11 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:10:11 INFO opendrift.models.basemodel:2038: 2024-11-09 03:00:00 - step 28 of 71 - 1000 active elements (0 deactivated)
13:10:11 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:10:11 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:10:11 DEBUG opendrift.models.basemodel:2057: 60.45042505701238 <- latitude -> 60.48360194242349
13:10:11 DEBUG opendrift.models.basemodel:2062: 4.507603998238268 <- longitude -> 4.517495767266763
13:10:11 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:10:11 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:10:11 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:11 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:10:11 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:11 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:10:11 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:11 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:11 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:10:11 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:10:11 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:10:11 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:10:11 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:11 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:11 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:10:11 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:11 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:10:11 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:11 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:11 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:10:11 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-09 03:00:00 (before)
2024-11-09 04:00:00 (after)
13:10:13 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:10:13 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:10:13 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:10:13 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:10:13 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:10:13 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 26x25x2) for time before (2024-11-09 03:00:00)
13:10:13 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-09 03:00:00) in space (linearNDFast)
13:10:13 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:10:13 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:10:13 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.4924067645818 and -65.4825150082068 degrees.
13:10:13 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.4924067645818 and -65.4825150082068 degrees.
13:10:13 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:13 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:10:13 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:10:13 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:10:13 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:10:13 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:10:13 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.011168 (min) 0.00552539 (max)
13:10:13 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.297487 (min) 0.392854 (max)
13:10:13 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.0784733 (min) -0.0735114 (max)
13:10:13 DEBUG opendrift.models.basemodel.environment:905: x_wind: -3.21963 (min) -3.05448 (max)
13:10:13 DEBUG opendrift.models.basemodel.environment:905: y_wind: 4.70899 (min) 4.99047 (max)
13:10:13 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -8.02048e-06 (min) 2.12196e-06 (max)
13:10:13 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:10:13 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:10:13 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:10:13 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:10:13 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:10:13 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:10:13 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:10:13 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:10:13 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:10:13 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:10:13 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:10:13 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:10:13 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:10:13 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:10:13 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:10:13 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:10:13 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:10:13 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 305.563 (min) 310.708 (max)
13:10:13 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:10:13 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:10:13 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.800500, mean: 0.820709, max: 0.842171
13:10:13 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:10:13 DEBUG opendrift.models.physics_methods:1061: min: 4.874279, mean: 4.935365, max: 4.999536
13:10:13 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 4.874279, mean: 4.935365, max: 4.999536
13:10:13 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:10:13 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:13 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:10:13 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:10:13 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.114089 m/s - 0.117021 m/s)
13:10:13 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:10:13 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:10:13 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:10:13 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:10:13 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:10:13 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:13 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:10:13 INFO opendrift.models.basemodel:2038: 2024-11-09 04:00:00 - step 29 of 71 - 1000 active elements (0 deactivated)
13:10:13 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:10:13 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:10:13 DEBUG opendrift.models.basemodel:2057: 60.463079824198104 <- latitude -> 60.499503674077516
13:10:13 DEBUG opendrift.models.basemodel:2062: 4.503887407149753 <- longitude -> 4.512714529753228
13:10:13 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:10:13 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:10:13 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:13 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:10:13 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:13 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:10:13 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:13 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:13 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:10:13 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:10:13 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:10:13 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:10:13 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:13 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:13 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:10:13 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:13 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:10:13 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:13 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:13 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:10:13 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-09 04:00:00 (before)
2024-11-09 05:00:00 (after)
13:10:14 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:10:14 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:10:14 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:10:14 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:10:14 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:10:14 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 26x25x2) for time before (2024-11-09 04:00:00)
13:10:14 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-09 04:00:00) in space (linearNDFast)
13:10:14 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:10:14 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:10:14 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.4961233508204 and -65.48729623331545 degrees.
13:10:14 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.4961233508204 and -65.48729623331545 degrees.
13:10:14 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:14 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:10:14 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:10:14 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:10:14 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:10:14 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:10:14 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.0297114 (min) 0.0157877 (max)
13:10:14 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.250739 (min) 0.337061 (max)
13:10:14 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.12639 (min) -0.120174 (max)
13:10:14 DEBUG opendrift.models.basemodel.environment:905: x_wind: -3.25973 (min) -2.87955 (max)
13:10:14 DEBUG opendrift.models.basemodel.environment:905: y_wind: 3.83987 (min) 4.16673 (max)
13:10:14 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -4.58e-06 (min) -2.7487e-06 (max)
13:10:14 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:10:14 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:10:14 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:10:14 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:10:14 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:10:14 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:10:14 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:10:14 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:10:14 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:10:14 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:10:14 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:10:14 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:10:14 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:10:14 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:10:14 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:10:14 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:10:14 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:10:14 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 307.129 (min) 313.53 (max)
13:10:14 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:10:14 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:10:14 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.622373, mean: 0.623998, max: 0.631075
13:10:14 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:10:14 DEBUG opendrift.models.physics_methods:1061: min: 4.297888, mean: 4.303490, max: 4.327828
13:10:14 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 4.297888, mean: 4.303490, max: 4.327828
13:10:14 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:10:14 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:14 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:10:14 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:10:14 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.100598 m/s - 0.101298 m/s)
13:10:14 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:10:14 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:10:14 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:10:14 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:10:14 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:10:14 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:14 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:10:14 INFO opendrift.models.basemodel:2038: 2024-11-09 05:00:00 - step 30 of 71 - 1000 active elements (0 deactivated)
13:10:14 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:10:14 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:10:14 DEBUG opendrift.models.basemodel:2057: 60.47366247695558 <- latitude -> 60.513067683925286
13:10:14 DEBUG opendrift.models.basemodel:2062: 4.5010023682149685 <- longitude -> 4.506509576598823
13:10:14 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:10:14 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:10:14 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:14 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:10:14 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:14 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:10:14 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:14 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:14 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:10:14 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:10:14 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:10:14 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:10:14 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:14 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:14 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:10:14 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:14 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:10:14 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:14 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:14 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:10:14 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-09 05:00:00 (before)
2024-11-09 06:00:00 (after)
13:10:15 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:10:15 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:10:15 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:10:15 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:10:15 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:10:15 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 27x25x2) for time before (2024-11-09 05:00:00)
13:10:15 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-09 05:00:00) in space (linearNDFast)
13:10:15 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:10:15 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:10:15 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.49900838050867 and -65.49350119124773 degrees.
13:10:15 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.49900838050867 and -65.49350119124773 degrees.
13:10:15 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:15 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:10:15 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:10:15 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:10:15 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:10:15 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:10:15 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.0151992 (min) 0.0143432 (max)
13:10:15 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.210353 (min) 0.309583 (max)
13:10:15 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.227497 (min) -0.219372 (max)
13:10:15 DEBUG opendrift.models.basemodel.environment:905: x_wind: -2.39344 (min) -2.14841 (max)
13:10:15 DEBUG opendrift.models.basemodel.environment:905: y_wind: 5.11706 (min) 5.18123 (max)
13:10:15 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -3.09883e-05 (min) -2.54994e-05 (max)
13:10:15 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:10:15 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:10:15 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:10:15 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:10:15 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:10:15 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:10:15 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:10:15 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:10:15 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:10:15 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:10:15 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:10:15 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:10:15 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:10:15 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:10:15 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:10:15 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:10:15 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:10:15 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 308.127 (min) 316.135 (max)
13:10:15 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:10:15 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:10:15 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.757679, mean: 0.787007, max: 0.793734
13:10:15 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:10:15 DEBUG opendrift.models.physics_methods:1061: min: 4.742117, mean: 4.832996, max: 4.853634
13:10:15 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 4.742117, mean: 4.832996, max: 4.853634
13:10:15 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:10:15 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:15 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:10:15 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:10:15 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.110995 m/s - 0.113606 m/s)
13:10:15 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:10:15 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:10:15 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:10:15 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:10:15 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:10:15 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:15 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:10:15 INFO opendrift.models.basemodel:2038: 2024-11-09 06:00:00 - step 31 of 71 - 1000 active elements (0 deactivated)
13:10:15 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:10:15 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:10:15 DEBUG opendrift.models.basemodel:2057: 60.48378781736836 <- latitude -> 60.5263745049247
13:10:15 DEBUG opendrift.models.basemodel:2062: 4.498410912481964 <- longitude -> 4.502385224154799
13:10:15 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:10:15 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:10:15 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:15 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:10:15 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:15 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:10:15 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:15 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:15 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:10:15 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:10:15 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:10:15 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:10:15 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:15 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:15 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:10:15 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:15 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:10:15 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:15 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:15 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:10:15 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-09 06:00:00 (before)
2024-11-09 07:00:00 (after)
13:10:16 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:10:16 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:10:16 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:10:16 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:10:16 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:10:16 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 28x25x2) for time before (2024-11-09 06:00:00)
13:10:16 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-09 06:00:00) in space (linearNDFast)
13:10:16 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:10:16 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:10:16 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.50159983839217 and -65.49762554029503 degrees.
13:10:16 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.50159983839217 and -65.49762554029503 degrees.
13:10:16 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:16 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:10:16 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:10:16 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:10:16 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:10:16 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:10:16 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.0741537 (min) -0.00125213 (max)
13:10:16 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.176064 (min) 0.322473 (max)
13:10:16 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.359506 (min) -0.353643 (max)
13:10:16 DEBUG opendrift.models.basemodel.environment:905: x_wind: -1.47098 (min) -1.28013 (max)
13:10:16 DEBUG opendrift.models.basemodel.environment:905: y_wind: 5.13986 (min) 5.30437 (max)
13:10:16 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -3.04559e-05 (min) -2.90903e-05 (max)
13:10:16 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:10:16 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:10:16 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:10:16 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:10:16 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:10:16 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:10:16 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:10:16 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:10:16 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:10:16 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:10:16 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:10:16 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:10:16 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:10:16 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:10:16 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:10:16 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:10:16 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:10:16 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 309.431 (min) 319.204 (max)
13:10:16 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:10:16 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:10:16 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.703115, mean: 0.719386, max: 0.732494
13:10:16 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:10:16 DEBUG opendrift.models.physics_methods:1061: min: 4.568176, mean: 4.620695, max: 4.662637
13:10:16 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 4.568176, mean: 4.620695, max: 4.662637
13:10:16 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:10:16 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:16 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:10:16 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:10:16 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.106924 m/s - 0.109135 m/s)
13:10:16 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:10:16 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:10:16 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:10:16 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:10:16 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:10:16 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:16 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:10:16 INFO opendrift.models.basemodel:2038: 2024-11-09 07:00:00 - step 32 of 71 - 1000 active elements (0 deactivated)
13:10:16 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:10:16 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:10:16 DEBUG opendrift.models.basemodel:2057: 60.49279781268871 <- latitude -> 60.54020549739383
13:10:16 DEBUG opendrift.models.basemodel:2062: 4.49188772657619 <- longitude -> 4.499895410383076
13:10:16 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:10:16 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:10:16 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:16 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:10:16 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:16 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:10:16 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:16 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:16 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:10:16 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:10:16 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:10:16 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:10:16 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:16 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:16 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:10:16 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:16 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:10:16 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:16 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:16 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:10:16 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-09 07:00:00 (before)
2024-11-09 08:00:00 (after)
13:10:17 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:10:17 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:10:17 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:10:17 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:10:17 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:10:17 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 28x25x2) for time before (2024-11-09 07:00:00)
13:10:17 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-09 07:00:00) in space (linearNDFast)
13:10:17 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:10:17 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:10:17 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.50812302667251 and -65.5001153521398 degrees.
13:10:17 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.50812302667251 and -65.5001153521398 degrees.
13:10:17 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:17 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:10:17 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:10:17 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:10:17 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:10:17 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:10:17 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.0808186 (min) -0.0581615 (max)
13:10:17 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.236492 (min) 0.383534 (max)
13:10:17 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.508348 (min) -0.506036 (max)
13:10:17 DEBUG opendrift.models.basemodel.environment:905: x_wind: -0.902663 (min) -0.767615 (max)
13:10:17 DEBUG opendrift.models.basemodel.environment:905: y_wind: 3.44814 (min) 3.74437 (max)
13:10:17 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -2.95832e-05 (min) -2.83172e-05 (max)
13:10:17 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:10:17 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:10:17 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:10:17 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:10:17 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:10:17 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:10:17 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:10:17 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:10:17 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:10:17 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:10:17 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:10:17 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:10:17 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:10:17 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:10:17 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:10:17 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:10:17 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:10:17 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 310.821 (min) 321.782 (max)
13:10:17 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:10:17 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:10:17 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.306981, mean: 0.335576, max: 0.363965
13:10:17 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:10:17 DEBUG opendrift.models.physics_methods:1061: min: 3.018461, mean: 3.155589, max: 3.286695
13:10:17 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 3.018461, mean: 3.155589, max: 3.286695
13:10:17 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:10:17 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:17 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:10:17 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:10:17 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.070651 m/s - 0.076929 m/s)
13:10:17 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:10:17 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:10:17 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:10:17 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:10:17 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:10:17 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:17 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:10:17 INFO opendrift.models.basemodel:2038: 2024-11-09 08:00:00 - step 33 of 71 - 1000 active elements (0 deactivated)
13:10:17 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:10:17 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:10:17 DEBUG opendrift.models.basemodel:2057: 60.50266697810022 <- latitude -> 60.55501264815709
13:10:17 DEBUG opendrift.models.basemodel:2062: 4.485476460978617 <- longitude -> 4.4949555854503584
13:10:17 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:10:17 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:10:17 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:17 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:10:17 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:17 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:10:17 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:17 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:17 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:10:17 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:10:17 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:10:17 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:10:17 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:17 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:17 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:10:17 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:17 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:10:17 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:17 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:17 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:10:17 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-09 08:00:00 (before)
2024-11-09 09:00:00 (after)
13:10:18 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:10:18 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:10:18 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:10:18 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:10:18 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:10:18 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 29x25x2) for time before (2024-11-09 08:00:00)
13:10:18 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-09 08:00:00) in space (linearNDFast)
13:10:18 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:10:18 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:10:18 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.51453428204451 and -65.5050551664625 degrees.
13:10:18 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.51453428204451 and -65.5050551664625 degrees.
13:10:18 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:18 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:10:18 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:10:18 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:10:18 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:10:18 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:10:18 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.0846978 (min) -0.0260351 (max)
13:10:18 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.280913 (min) 0.46646 (max)
13:10:18 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.61966 (min) -0.617237 (max)
13:10:18 DEBUG opendrift.models.basemodel.environment:905: x_wind: -1.57599 (min) -1.39536 (max)
13:10:18 DEBUG opendrift.models.basemodel.environment:905: y_wind: 3.54645 (min) 3.69295 (max)
13:10:18 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -1.47553e-05 (min) -1.37192e-05 (max)
13:10:18 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:10:18 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:10:18 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:10:18 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:10:18 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:10:18 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:10:18 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:10:18 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:10:18 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:10:18 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:10:18 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:10:18 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:10:18 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:10:18 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:10:18 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:10:18 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:10:18 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:10:18 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 311.799 (min) 324.918 (max)
13:10:18 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:10:18 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:10:18 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.357299, mean: 0.366716, max: 0.396592
13:10:18 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:10:18 DEBUG opendrift.models.physics_methods:1061: min: 3.256458, mean: 3.298977, max: 3.430847
13:10:18 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 3.256458, mean: 3.298977, max: 3.430847
13:10:18 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:10:18 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:18 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:10:18 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:10:18 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.076222 m/s - 0.080303 m/s)
13:10:18 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:10:18 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:10:18 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:10:18 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:10:18 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:10:18 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:18 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:10:18 INFO opendrift.models.basemodel:2038: 2024-11-09 09:00:00 - step 34 of 71 - 1000 active elements (0 deactivated)
13:10:18 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:10:18 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:10:18 DEBUG opendrift.models.basemodel:2057: 60.51412961238536 <- latitude -> 60.57238395280327
13:10:18 DEBUG opendrift.models.basemodel:2062: 4.478053906241518 <- longitude -> 4.490713388981733
13:10:18 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:10:18 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:10:18 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:18 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:10:18 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:18 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:10:18 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:18 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:18 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:10:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:10:18 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:10:18 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:10:18 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:18 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:18 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:10:18 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:18 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:10:18 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:18 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:18 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:10:18 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-09 09:00:00 (before)
2024-11-09 10:00:00 (after)
13:10:19 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:10:19 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:10:19 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:10:19 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:10:19 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:10:19 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 29x27x2) for time before (2024-11-09 09:00:00)
13:10:19 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-09 09:00:00) in space (linearNDFast)
13:10:19 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:10:19 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:10:19 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.52195682947153 and -65.50929736874974 degrees.
13:10:19 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.52195682947153 and -65.50929736874974 degrees.
13:10:19 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:19 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:10:19 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:10:19 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:10:19 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:10:19 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:10:19 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.132657 (min) -0.0225157 (max)
13:10:19 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.325326 (min) 0.57433 (max)
13:10:19 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.646758 (min) -0.639538 (max)
13:10:19 DEBUG opendrift.models.basemodel.environment:905: x_wind: -2.23204 (min) -2.15758 (max)
13:10:19 DEBUG opendrift.models.basemodel.environment:905: y_wind: 4.76411 (min) 4.84587 (max)
13:10:19 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 1.0179e-05 (min) 1.24978e-05 (max)
13:10:19 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:10:19 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:10:19 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:10:19 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:10:19 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:10:19 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:10:19 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:10:19 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:10:19 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:10:19 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:10:19 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:10:19 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:10:19 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:10:19 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:10:19 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:10:19 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:10:19 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:10:19 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 313.548 (min) 328.662 (max)
13:10:19 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:10:19 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:10:19 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.680846, mean: 0.692499, max: 0.695915
13:10:19 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:10:19 DEBUG opendrift.models.physics_methods:1061: min: 4.495251, mean: 4.533545, max: 4.544726
13:10:19 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 4.495251, mean: 4.533545, max: 4.544726
13:10:19 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:10:19 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:19 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:10:19 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:10:19 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.105217 m/s - 0.106375 m/s)
13:10:19 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:10:19 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:10:19 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:10:19 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:10:19 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:10:19 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:19 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:10:19 INFO opendrift.models.basemodel:2038: 2024-11-09 10:00:00 - step 35 of 71 - 1000 active elements (0 deactivated)
13:10:19 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:10:19 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:10:19 DEBUG opendrift.models.basemodel:2057: 60.52775336779137 <- latitude -> 60.59401852685672
13:10:19 DEBUG opendrift.models.basemodel:2062: 4.46640672105974 <- longitude -> 4.48640817149736
13:10:19 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:10:19 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:10:19 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:19 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:10:19 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:19 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:10:19 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:19 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:19 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:10:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:10:19 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:10:19 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:10:19 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:19 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:19 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:10:19 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:19 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:10:19 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:19 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:19 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:10:19 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-09 10:00:00 (before)
2024-11-09 11:00:00 (after)
13:10:20 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:10:20 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:10:20 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:10:20 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:10:20 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:10:20 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 30x27x2) for time before (2024-11-09 10:00:00)
13:10:20 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-09 10:00:00) in space (linearNDFast)
13:10:20 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:10:20 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:10:20 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.53360401129956 and -65.51360257286368 degrees.
13:10:20 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.53360401129956 and -65.51360257286368 degrees.
13:10:20 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:20 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:10:20 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:10:20 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:10:20 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:10:20 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:10:20 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.123872 (min) -0.0482298 (max)
13:10:20 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.390516 (min) 0.631611 (max)
13:10:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.58441 (min) -0.57819 (max)
13:10:20 DEBUG opendrift.models.basemodel.environment:905: x_wind: -1.84468 (min) -1.80879 (max)
13:10:20 DEBUG opendrift.models.basemodel.environment:905: y_wind: 4.81169 (min) 4.93556 (max)
13:10:20 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 2.36433e-05 (min) 2.77247e-05 (max)
13:10:20 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:10:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:10:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:10:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:10:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:10:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:10:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:10:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:10:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:10:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:10:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:10:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:10:20 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:10:20 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:10:20 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:10:20 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:10:20 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:10:20 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 316.256 (min) 332.488 (max)
13:10:20 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:10:20 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:10:20 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.651976, mean: 0.670716, max: 0.681373
13:10:20 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:10:20 DEBUG opendrift.models.physics_methods:1061: min: 4.398913, mean: 4.461623, max: 4.496990
13:10:20 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 4.398913, mean: 4.461623, max: 4.496990
13:10:20 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:10:20 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:20 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:10:20 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:10:20 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.102962 m/s - 0.105258 m/s)
13:10:20 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:10:20 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:10:20 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:10:20 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:10:20 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:10:20 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:20 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:10:20 INFO opendrift.models.basemodel:2038: 2024-11-09 11:00:00 - step 36 of 71 - 1000 active elements (0 deactivated)
13:10:20 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:10:20 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:10:20 DEBUG opendrift.models.basemodel:2057: 60.54356007146521 <- latitude -> 60.617534507333815
13:10:20 DEBUG opendrift.models.basemodel:2062: 4.455856608271234 <- longitude -> 4.480871888859021
13:10:20 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:10:20 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:10:20 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:20 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:10:20 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:20 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:10:20 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:20 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:20 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:10:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:10:20 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:10:20 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:10:20 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:20 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:20 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:10:20 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:20 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:10:20 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:20 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:20 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:10:20 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-09 11:00:00 (before)
2024-11-09 12:00:00 (after)
13:10:21 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:10:21 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:10:21 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:10:21 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:10:21 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:10:21 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 31x28x2) for time before (2024-11-09 11:00:00)
13:10:21 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-09 11:00:00) in space (linearNDFast)
13:10:21 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:10:21 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:10:21 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.54415411482194 and -65.51913885647176 degrees.
13:10:21 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.54415411482194 and -65.51913885647176 degrees.
13:10:21 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:21 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:10:21 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:10:21 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:10:21 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:10:21 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:10:21 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.131304 (min) -0.0750887 (max)
13:10:21 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.457418 (min) 0.66167 (max)
13:10:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.446629 (min) -0.445066 (max)
13:10:21 DEBUG opendrift.models.basemodel.environment:905: x_wind: -0.212891 (min) 0.0882715 (max)
13:10:21 DEBUG opendrift.models.basemodel.environment:905: y_wind: 5.39709 (min) 5.62491 (max)
13:10:21 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 4.5871e-05 (min) 4.75831e-05 (max)
13:10:21 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:10:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:10:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:10:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:10:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:10:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:10:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:10:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:10:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:10:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:10:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:10:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:10:21 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:10:21 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:10:21 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:10:21 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:10:21 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:10:21 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 319.789 (min) 336.41 (max)
13:10:21 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:10:21 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:10:21 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.716702, mean: 0.754400, max: 0.778375
13:10:21 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:10:21 DEBUG opendrift.models.physics_methods:1061: min: 4.612102, mean: 4.731609, max: 4.806445
13:10:21 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 4.612102, mean: 4.731609, max: 4.806445
13:10:21 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:10:21 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:21 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:10:21 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:10:21 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.107952 m/s - 0.112501 m/s)
13:10:21 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:10:21 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:10:21 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:10:21 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:10:21 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:10:21 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:21 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:10:21 INFO opendrift.models.basemodel:2038: 2024-11-09 12:00:00 - step 37 of 71 - 1000 active elements (0 deactivated)
13:10:21 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:10:21 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:10:21 DEBUG opendrift.models.basemodel:2057: 60.561826588100885 <- latitude -> 60.64250666541815
13:10:21 DEBUG opendrift.models.basemodel:2062: 4.446938103782695 <- longitude -> 4.476043209874786
13:10:21 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:10:21 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:10:21 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:21 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:10:21 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:21 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:10:21 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:21 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:21 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:10:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:10:21 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:10:21 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:10:21 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:21 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:21 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:10:21 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:21 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:10:21 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:21 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:21 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:10:21 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-09 12:00:00 (before)
2024-11-09 13:00:00 (after)
13:10:22 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:10:22 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:10:22 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:10:22 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:10:22 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:10:22 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity']
13:10:22 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 32x29x2) for time before (2024-11-09 12:00:00)
13:10:22 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-09 12:00:00) in space (linearNDFast)
13:10:22 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:10:22 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:10:22 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.55307261241069 and -65.52396752636548 degrees.
13:10:22 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.55307261241069 and -65.52396752636548 degrees.
13:10:22 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:22 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:10:22 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:10:22 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:10:22 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:10:22 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:10:22 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.0946508 (min) -0.0432913 (max)
13:10:22 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.478351 (min) 0.678299 (max)
13:10:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.280165 (min) -0.274332 (max)
13:10:22 DEBUG opendrift.models.basemodel.environment:905: x_wind: 0.278696 (min) 0.455717 (max)
13:10:22 DEBUG opendrift.models.basemodel.environment:905: y_wind: 5.2391 (min) 5.42726 (max)
13:10:22 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 4.98164e-05 (min) 5.04062e-05 (max)
13:10:22 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:10:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:10:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:10:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:10:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:10:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:10:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:10:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:10:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:10:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:10:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:10:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:10:22 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:10:22 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:10:22 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:10:22 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:10:22 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:10:22 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 324.538 (min) 340.151 (max)
13:10:22 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:10:22 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:10:22 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.680334, mean: 0.713654, max: 0.726508
13:10:22 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:10:22 DEBUG opendrift.models.physics_methods:1061: min: 4.493562, mean: 4.602220, max: 4.643546
13:10:22 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 4.493562, mean: 4.602220, max: 4.643546
13:10:22 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:10:22 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:22 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:10:22 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:10:22 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.105178 m/s - 0.108688 m/s)
13:10:22 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:10:22 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:10:22 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:10:22 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:10:22 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:10:22 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:22 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:10:22 INFO opendrift.models.basemodel:2038: 2024-11-09 13:00:00 - step 38 of 71 - 1000 active elements (0 deactivated)
13:10:22 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:10:22 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:10:22 DEBUG opendrift.models.basemodel:2057: 60.58078895593609 <- latitude -> 60.66779060015755
13:10:22 DEBUG opendrift.models.basemodel:2062: 4.441314585992134 <- longitude -> 4.473566593611973
13:10:22 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:10:22 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:10:22 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:22 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:10:22 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:22 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:10:22 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:22 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:22 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:10:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:10:22 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:10:22 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:10:22 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:22 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:22 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:10:22 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:22 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:10:22 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:22 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:22 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:10:22 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-09 13:00:00 (before)
2024-11-09 14:00:00 (after)
13:10:23 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:10:23 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:10:23 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:10:23 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:10:23 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:10:23 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
13:10:23 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 32x29x2) for time before (2024-11-09 13:00:00)
13:10:23 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-09 13:00:00) in space (linearNDFast)
13:10:23 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:10:23 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:10:23 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.55869611855931 and -65.52644414267084 degrees.
13:10:23 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.55869611855931 and -65.52644414267084 degrees.
13:10:23 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:23 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:10:23 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:10:23 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:10:23 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:10:23 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:10:23 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.0732817 (min) -0.0100367 (max)
13:10:23 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.450444 (min) 0.634614 (max)
13:10:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.123969 (min) -0.113298 (max)
13:10:23 DEBUG opendrift.models.basemodel.environment:905: x_wind: -0.186161 (min) -0.118194 (max)
13:10:23 DEBUG opendrift.models.basemodel.environment:905: y_wind: 4.81167 (min) 4.86966 (max)
13:10:23 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 3.73165e-05 (min) 3.92215e-05 (max)
13:10:23 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:10:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:10:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:10:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:10:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:10:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:10:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:10:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:10:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:10:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:10:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:10:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:10:23 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:10:23 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:10:23 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:10:23 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:10:23 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:10:23 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 330.19 (min) 344.152 (max)
13:10:23 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:10:23 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:10:23 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.569886, mean: 0.582874, max: 0.584168
13:10:23 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:10:23 DEBUG opendrift.models.physics_methods:1061: min: 4.112668, mean: 4.159264, max: 4.163884
13:10:23 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 4.112668, mean: 4.159264, max: 4.163884
13:10:23 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:10:23 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:23 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:10:23 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:10:23 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.096262 m/s - 0.097461 m/s)
13:10:23 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:10:23 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:10:23 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:10:23 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:10:23 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:10:23 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:23 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:10:23 INFO opendrift.models.basemodel:2038: 2024-11-09 14:00:00 - step 39 of 71 - 1000 active elements (0 deactivated)
13:10:23 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:10:23 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:10:23 DEBUG opendrift.models.basemodel:2057: 60.59848622250823 <- latitude -> 60.69140351372113
13:10:23 DEBUG opendrift.models.basemodel:2062: 4.436330316181643 <- longitude -> 4.4726647451138035
13:10:23 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:10:23 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:10:23 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:23 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:10:23 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:23 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:10:23 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:23 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:23 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:10:23 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:10:23 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:10:23 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:10:23 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:23 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:23 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:10:23 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:23 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:10:23 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:23 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:23 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:10:23 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-09 14:00:00 (before)
2024-11-09 15:00:00 (after)
13:10:24 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:10:24 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:10:24 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:10:24 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:10:24 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:10:24 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
13:10:24 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 33x30x2) for time before (2024-11-09 14:00:00)
13:10:24 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-09 14:00:00) in space (linearNDFast)
13:10:24 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:10:24 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:10:24 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.5636803836279 and -65.52734598313714 degrees.
13:10:24 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.5636803836279 and -65.52734598313714 degrees.
13:10:24 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:24 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:10:24 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:10:24 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:10:24 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:10:24 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:10:24 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.0632387 (min) -0.00872003 (max)
13:10:24 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.40542 (min) 0.591999 (max)
13:10:24 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.0171672 (min) -0.00648256 (max)
13:10:24 DEBUG opendrift.models.basemodel.environment:905: x_wind: -0.355567 (min) -0.0981445 (max)
13:10:24 DEBUG opendrift.models.basemodel.environment:905: y_wind: 4.67296 (min) 4.78874 (max)
13:10:24 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 2.15744e-05 (min) 2.42669e-05 (max)
13:10:24 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:10:24 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:10:24 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:10:24 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:10:24 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:10:24 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:10:24 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:10:24 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:10:24 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:10:24 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:10:24 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:10:24 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:10:24 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:10:24 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:10:24 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:10:24 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:10:24 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:10:24 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 335.548 (min) 347.622 (max)
13:10:24 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:10:24 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:10:24 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.537500, mean: 0.549003, max: 0.567238
13:10:24 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:10:24 DEBUG opendrift.models.physics_methods:1061: min: 3.994100, mean: 4.036502, max: 4.103103
13:10:24 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 3.994100, mean: 4.036502, max: 4.103103
13:10:24 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:10:24 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:24 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:10:24 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:10:24 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.093487 m/s - 0.096038 m/s)
13:10:24 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:10:24 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:10:24 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:10:24 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:10:24 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:10:24 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:24 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:10:24 INFO opendrift.models.basemodel:2038: 2024-11-09 15:00:00 - step 40 of 71 - 1000 active elements (0 deactivated)
13:10:24 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:10:24 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:10:24 DEBUG opendrift.models.basemodel:2057: 60.614607735887894 <- latitude -> 60.71358609335009
13:10:24 DEBUG opendrift.models.basemodel:2062: 4.431691737561627 <- longitude -> 4.471962511461991
13:10:24 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:10:24 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:10:24 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:24 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:10:24 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:24 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:10:24 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:24 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:24 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:10:24 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:10:24 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:10:24 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:10:24 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:24 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:24 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:10:24 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:24 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:10:24 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:24 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:24 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:10:24 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-09 15:00:00 (before)
2024-11-09 16:00:00 (after)
13:10:25 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:10:25 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:10:25 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:10:25 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:10:25 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:10:25 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
13:10:25 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 33x31x2) for time before (2024-11-09 15:00:00)
13:10:25 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-09 15:00:00) in space (linearNDFast)
13:10:25 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:10:25 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:10:25 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.56831895713705 and -65.52804821166092 degrees.
13:10:25 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.56831895713705 and -65.52804821166092 degrees.
13:10:25 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:25 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:10:25 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:10:25 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:10:25 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:10:25 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:10:25 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.0665422 (min) -0.0209278 (max)
13:10:25 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.356993 (min) 0.507854 (max)
13:10:25 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0.0314726 (min) 0.0438327 (max)
13:10:25 DEBUG opendrift.models.basemodel.environment:905: x_wind: 0.261304 (min) 0.32288 (max)
13:10:25 DEBUG opendrift.models.basemodel.environment:905: y_wind: 4.1694 (min) 4.52934 (max)
13:10:25 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 1.81081e-06 (min) 4.14755e-06 (max)
13:10:25 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:10:25 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:10:25 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:10:25 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:10:25 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:10:25 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:10:25 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:10:25 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:10:25 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:10:25 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:10:25 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:10:25 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:10:25 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:10:25 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:10:25 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:10:25 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:10:25 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:10:25 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 339.958 (min) 351.822 (max)
13:10:25 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:10:25 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:10:25 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.429401, mean: 0.448274, max: 0.507221
13:10:25 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:10:25 DEBUG opendrift.models.physics_methods:1061: min: 3.569942, mean: 3.647144, max: 3.879967
13:10:25 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 3.569942, mean: 3.647144, max: 3.879967
13:10:25 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:10:25 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:25 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:10:25 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:10:25 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.083559 m/s - 0.090816 m/s)
13:10:25 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:10:25 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:10:25 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:10:25 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:10:25 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:10:25 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:25 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:10:25 INFO opendrift.models.basemodel:2038: 2024-11-09 16:00:00 - step 41 of 71 - 1000 active elements (0 deactivated)
13:10:25 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:10:25 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:10:25 DEBUG opendrift.models.basemodel:2057: 60.62885034257371 <- latitude -> 60.73272899616059
13:10:25 DEBUG opendrift.models.basemodel:2062: 4.428072109927921 <- longitude -> 4.470959658585341
13:10:25 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:10:25 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:10:25 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:25 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:10:25 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:25 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:10:25 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:25 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:25 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:10:25 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:10:25 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:10:25 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:10:25 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:25 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:25 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:10:25 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:25 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:10:25 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:25 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:25 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:10:25 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-09 16:00:00 (before)
2024-11-09 17:00:00 (after)
13:10:26 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:10:26 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:10:26 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:10:26 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:10:26 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:10:26 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
13:10:26 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 34x31x2) for time before (2024-11-09 16:00:00)
13:10:26 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-09 16:00:00) in space (linearNDFast)
13:10:26 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:10:26 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:10:26 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.57193857576372 and -65.5290510570026 degrees.
13:10:26 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.57193857576372 and -65.5290510570026 degrees.
13:10:26 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:26 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:10:26 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:10:26 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:10:26 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:10:26 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:10:26 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.11998 (min) -0.0271073 (max)
13:10:26 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.325224 (min) 0.441549 (max)
13:10:26 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0.00981846 (min) 0.0271892 (max)
13:10:26 DEBUG opendrift.models.basemodel.environment:905: x_wind: 0.0855026 (min) 0.395086 (max)
13:10:26 DEBUG opendrift.models.basemodel.environment:905: y_wind: 3.60273 (min) 4.19251 (max)
13:10:26 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -1.72043e-05 (min) -1.62368e-05 (max)
13:10:26 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:10:26 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:10:26 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:10:26 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:10:26 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:10:26 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:10:26 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:10:26 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:10:26 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:10:26 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:10:26 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:10:26 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:10:26 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:10:26 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:10:26 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:10:26 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:10:26 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:10:26 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 343.502 (min) 356.993 (max)
13:10:26 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:10:26 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:10:26 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.319479, mean: 0.364699, max: 0.435595
13:10:26 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:10:26 DEBUG opendrift.models.physics_methods:1061: min: 3.079291, mean: 3.288457, max: 3.595599
13:10:26 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 3.079291, mean: 3.288457, max: 3.595599
13:10:26 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:10:26 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:26 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:10:26 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:10:26 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.072075 m/s - 0.084160 m/s)
13:10:26 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:10:26 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:10:26 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:10:26 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:10:26 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:10:26 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:26 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:10:26 INFO opendrift.models.basemodel:2038: 2024-11-09 17:00:00 - step 42 of 71 - 1000 active elements (0 deactivated)
13:10:26 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:10:26 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:10:26 DEBUG opendrift.models.basemodel:2057: 60.64168611969195 <- latitude -> 60.74843425985515
13:10:26 DEBUG opendrift.models.basemodel:2062: 4.420628523158731 <- longitude -> 4.469288787388135
13:10:26 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:10:26 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:10:26 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:26 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:10:26 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:26 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:10:26 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:26 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:26 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:10:26 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:10:26 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:10:26 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:10:26 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:26 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:26 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:10:26 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:26 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:10:26 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:26 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:26 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:10:26 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-09 17:00:00 (before)
2024-11-09 18:00:00 (after)
13:10:29 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:10:29 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:10:29 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:10:29 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:10:29 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:10:29 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
13:10:29 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 34x31x2) for time before (2024-11-09 17:00:00)
13:10:29 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-09 17:00:00) in space (linearNDFast)
13:10:29 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:10:29 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:10:29 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.57938215492078 and -65.53072193077932 degrees.
13:10:29 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.57938215492078 and -65.53072193077932 degrees.
13:10:29 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:29 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:10:29 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:10:29 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:10:29 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:10:29 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:10:29 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.242995 (min) -0.0457803 (max)
13:10:29 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.296839 (min) 0.408493 (max)
13:10:29 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.084573 (min) -0.0626346 (max)
13:10:29 DEBUG opendrift.models.basemodel.environment:905: x_wind: -0.988713 (min) -0.686046 (max)
13:10:29 DEBUG opendrift.models.basemodel.environment:905: y_wind: 3.53906 (min) 3.71028 (max)
13:10:29 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -3.59104e-05 (min) -3.4682e-05 (max)
13:10:29 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:10:29 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:10:29 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:10:29 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:10:29 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:10:29 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:10:29 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:10:29 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:10:29 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:10:29 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:10:29 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:10:29 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:10:29 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:10:29 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:10:29 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:10:29 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:10:29 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:10:29 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 346.422 (min) 361.215 (max)
13:10:29 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:10:29 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:10:29 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.331154, mean: 0.346226, max: 0.353154
13:10:29 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:10:29 DEBUG opendrift.models.physics_methods:1061: min: 3.135052, mean: 3.205502, max: 3.237515
13:10:29 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 3.135052, mean: 3.205502, max: 3.237515
13:10:29 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:10:29 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:29 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:10:29 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:10:29 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.073380 m/s - 0.075778 m/s)
13:10:29 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:10:29 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:10:29 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:10:29 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:10:29 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:10:29 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:29 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:10:29 INFO opendrift.models.basemodel:2038: 2024-11-09 18:00:00 - step 43 of 71 - 1000 active elements (0 deactivated)
13:10:29 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:10:29 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:10:29 DEBUG opendrift.models.basemodel:2057: 60.65365509618373 <- latitude -> 60.76214869631187
13:10:29 DEBUG opendrift.models.basemodel:2062: 4.403306979537167 <- longitude -> 4.465372705174166
13:10:29 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:10:29 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:10:29 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:29 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:10:29 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:29 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:10:29 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:29 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:29 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:10:29 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:10:29 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:10:29 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:10:29 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:29 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:29 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:10:29 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:29 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:10:29 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:29 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:29 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:10:29 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-09 18:00:00 (before)
2024-11-09 19:00:00 (after)
13:10:30 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:10:30 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:10:30 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:10:30 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:10:30 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:10:30 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
13:10:30 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 34x32x2) for time before (2024-11-09 18:00:00)
13:10:30 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-09 18:00:00) in space (linearNDFast)
13:10:30 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:10:30 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:10:30 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.59670369996441 and -65.53463801008562 degrees.
13:10:31 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.59670369996441 and -65.53463801008562 degrees.
13:10:31 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:31 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:10:31 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:10:31 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:10:31 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:10:31 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:10:31 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.330414 (min) -0.106474 (max)
13:10:31 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.284211 (min) 0.403284 (max)
13:10:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.236161 (min) -0.223588 (max)
13:10:31 DEBUG opendrift.models.basemodel.environment:905: x_wind: -1.10494 (min) -0.7683 (max)
13:10:31 DEBUG opendrift.models.basemodel.environment:905: y_wind: 3.67336 (min) 3.83187 (max)
13:10:31 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -5.10339e-05 (min) -4.78635e-05 (max)
13:10:31 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:10:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:10:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:10:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:10:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:10:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:10:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:10:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:10:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:10:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:10:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:10:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:10:31 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:10:31 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:10:31 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:10:31 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:10:31 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:10:31 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 348.291 (min) 363.778 (max)
13:10:31 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:10:31 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:10:31 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.346463, mean: 0.373034, max: 0.386084
13:10:31 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:10:31 DEBUG opendrift.models.physics_methods:1061: min: 3.206696, mean: 3.327315, max: 3.385094
13:10:31 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 3.206696, mean: 3.327315, max: 3.385094
13:10:31 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:10:31 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:31 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:10:31 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:10:31 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.075057 m/s - 0.079233 m/s)
13:10:31 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:10:31 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:10:31 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:10:31 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:10:31 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:10:31 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:31 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:10:31 INFO opendrift.models.basemodel:2038: 2024-11-09 19:00:00 - step 44 of 71 - 1000 active elements (0 deactivated)
13:10:31 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:10:31 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:10:31 DEBUG opendrift.models.basemodel:2057: 60.66521119436521 <- latitude -> 60.7776327470731
13:10:31 DEBUG opendrift.models.basemodel:2062: 4.380017155852833 <- longitude -> 4.457350993841654
13:10:31 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:10:31 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:10:31 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:31 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:10:31 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:31 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:10:31 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:31 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:31 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:10:31 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:10:31 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:10:31 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:10:31 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:31 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:31 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:10:31 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:31 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:10:31 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:31 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:31 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:10:31 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-09 19:00:00 (before)
2024-11-09 20:00:00 (after)
13:10:31 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:10:31 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:10:31 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:10:31 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:10:31 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:10:31 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
13:10:31 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 34x33x2) for time before (2024-11-09 19:00:00)
13:10:31 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-09 19:00:00) in space (linearNDFast)
13:10:31 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:10:31 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:10:31 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.6199935180903 and -65.5426597207236 degrees.
13:10:31 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.6199935180903 and -65.5426597207236 degrees.
13:10:31 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:31 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:10:31 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:10:31 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:10:31 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:10:31 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:10:31 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.343152 (min) -0.148878 (max)
13:10:31 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.32205 (min) 0.475346 (max)
13:10:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.420899 (min) -0.416544 (max)
13:10:31 DEBUG opendrift.models.basemodel.environment:905: x_wind: -1.88533 (min) -1.65165 (max)
13:10:31 DEBUG opendrift.models.basemodel.environment:905: y_wind: 2.34499 (min) 2.86575 (max)
13:10:31 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -5.16356e-05 (min) -4.88364e-05 (max)
13:10:31 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:10:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:10:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:10:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:10:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:10:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:10:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:10:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:10:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:10:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:10:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:10:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:10:31 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:10:31 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:10:31 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:10:31 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:10:31 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:10:31 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 348.436 (min) 368.041 (max)
13:10:31 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:10:31 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:10:31 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.222068, mean: 0.232335, max: 0.269135
13:10:31 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:10:31 DEBUG opendrift.models.physics_methods:1061: min: 2.567274, mean: 2.625507, max: 2.826275
13:10:31 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 2.567274, mean: 2.625507, max: 2.826275
13:10:31 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:10:31 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:31 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:10:31 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:10:31 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.060090 m/s - 0.066153 m/s)
13:10:31 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:10:31 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:10:31 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:10:31 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:10:31 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:10:31 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:31 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:10:31 INFO opendrift.models.basemodel:2038: 2024-11-09 20:00:00 - step 45 of 71 - 1000 active elements (0 deactivated)
13:10:31 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:10:31 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:10:31 DEBUG opendrift.models.basemodel:2057: 60.67719115808103 <- latitude -> 60.79481578575651
13:10:31 DEBUG opendrift.models.basemodel:2062: 4.35514955187848 <- longitude -> 4.445124610558239
13:10:31 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:10:31 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:10:31 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:31 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:10:31 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:31 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:10:31 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:31 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:31 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:10:31 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:10:31 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:10:31 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:10:31 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:31 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:31 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:10:31 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:31 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:10:31 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:31 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:31 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:10:31 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-09 20:00:00 (before)
2024-11-09 21:00:00 (after)
13:10:32 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:10:32 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:10:32 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:10:32 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:10:32 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:10:32 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
13:10:32 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 34x34x2) for time before (2024-11-09 20:00:00)
13:10:32 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-09 20:00:00) in space (linearNDFast)
13:10:32 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:10:32 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:10:32 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.64486112400573 and -65.55488609191273 degrees.
13:10:32 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.64486112400573 and -65.55488609191273 degrees.
13:10:32 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:32 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:10:32 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:10:32 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:10:32 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:10:32 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:10:32 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.301386 (min) -0.189606 (max)
13:10:32 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.360617 (min) 0.536292 (max)
13:10:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.598891 (min) -0.592536 (max)
13:10:32 DEBUG opendrift.models.basemodel.environment:905: x_wind: -2.37286 (min) -2.1836 (max)
13:10:32 DEBUG opendrift.models.basemodel.environment:905: y_wind: 1.82501 (min) 2.32196 (max)
13:10:32 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -4.29399e-05 (min) -4.08066e-05 (max)
13:10:32 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:10:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:10:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:10:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:10:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:10:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:10:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:10:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:10:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:10:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:10:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:10:32 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:10:32 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:10:32 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:10:32 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:10:32 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:10:32 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:10:32 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 347.017 (min) 374.16 (max)
13:10:32 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:10:32 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:10:32 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.200519, mean: 0.223940, max: 0.270703
13:10:32 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:10:32 DEBUG opendrift.models.physics_methods:1061: min: 2.439535, mean: 2.576810, max: 2.834496
13:10:32 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 2.439535, mean: 2.576810, max: 2.834496
13:10:32 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:10:32 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:32 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:10:32 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:10:32 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.057100 m/s - 0.066345 m/s)
13:10:32 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:10:32 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:10:32 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:10:32 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:10:32 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:10:32 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:32 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:10:32 INFO opendrift.models.basemodel:2038: 2024-11-09 21:00:00 - step 46 of 71 - 1000 active elements (0 deactivated)
13:10:32 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:10:32 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:10:32 DEBUG opendrift.models.basemodel:2057: 60.69011848028836 <- latitude -> 60.81325601023357
13:10:32 DEBUG opendrift.models.basemodel:2062: 4.332221788654688 <- longitude -> 4.429737840546177
13:10:32 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:10:32 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:10:32 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:32 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:10:32 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:32 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:10:32 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:32 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:32 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:10:32 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:10:32 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:10:32 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:10:32 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:32 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:32 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:10:32 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:32 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:10:32 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:32 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:32 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:10:32 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-09 21:00:00 (before)
2024-11-09 22:00:00 (after)
13:10:33 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:10:33 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:10:33 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:10:33 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:10:33 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:10:33 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
13:10:33 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 35x35x2) for time before (2024-11-09 21:00:00)
13:10:33 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-09 21:00:00) in space (linearNDFast)
13:10:33 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:10:33 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:10:33 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.66778887497226 and -65.57027285427367 degrees.
13:10:33 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.66778887497226 and -65.57027285427367 degrees.
13:10:33 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:33 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:10:33 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:10:33 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:10:33 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:10:33 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:10:33 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.252649 (min) -0.213233 (max)
13:10:33 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.406525 (min) 0.562934 (max)
13:10:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.7169 (min) -0.705237 (max)
13:10:33 DEBUG opendrift.models.basemodel.environment:905: x_wind: -2.36605 (min) -2.17195 (max)
13:10:33 DEBUG opendrift.models.basemodel.environment:905: y_wind: 1.94965 (min) 2.2776 (max)
13:10:33 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -2.20839e-05 (min) -2.0289e-05 (max)
13:10:33 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:10:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:10:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:10:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:10:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:10:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:10:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:10:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:10:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:10:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:10:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:10:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:10:33 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:10:33 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:10:33 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:10:33 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:10:33 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:10:33 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 344.543 (min) 380.728 (max)
13:10:33 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:10:33 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:10:33 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.221865, mean: 0.227320, max: 0.249412
13:10:33 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:10:33 DEBUG opendrift.models.physics_methods:1061: min: 2.566105, mean: 2.597269, max: 2.720746
13:10:33 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 2.566105, mean: 2.597269, max: 2.720746
13:10:33 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:10:33 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:33 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:10:33 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:10:33 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.060063 m/s - 0.063683 m/s)
13:10:33 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:10:33 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:10:33 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:10:33 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:10:33 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:10:33 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:33 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:10:33 INFO opendrift.models.basemodel:2038: 2024-11-09 22:00:00 - step 47 of 71 - 1000 active elements (0 deactivated)
13:10:33 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:10:33 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:10:33 DEBUG opendrift.models.basemodel:2057: 60.704643663380736 <- latitude -> 60.832193475038125
13:10:33 DEBUG opendrift.models.basemodel:2062: 4.314610675791464 <- longitude -> 4.412573629829117
13:10:33 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:10:33 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:10:33 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:33 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:10:33 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:33 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:10:33 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:33 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:33 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:10:33 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:10:33 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:10:33 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:10:33 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:33 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:33 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:10:33 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:33 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:10:33 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:33 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:33 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:10:33 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-09 22:00:00 (before)
2024-11-09 23:00:00 (after)
13:10:34 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:10:34 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:10:34 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:10:34 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:10:34 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:10:34 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
13:10:34 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 35x36x2) for time before (2024-11-09 22:00:00)
13:10:34 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-09 22:00:00) in space (linearNDFast)
13:10:34 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:10:34 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:10:34 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.68539998583842 and -65.58743705974314 degrees.
13:10:34 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.68539998583842 and -65.58743705974314 degrees.
13:10:34 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:34 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:10:34 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:10:34 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:10:34 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:10:34 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:10:34 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.228755 (min) -0.131987 (max)
13:10:34 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.49131 (min) 0.571548 (max)
13:10:34 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.734986 (min) -0.72481 (max)
13:10:34 DEBUG opendrift.models.basemodel.environment:905: x_wind: -2.80159 (min) -2.56782 (max)
13:10:34 DEBUG opendrift.models.basemodel.environment:905: y_wind: 2.61082 (min) 2.80383 (max)
13:10:34 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 8.02949e-06 (min) 1.02645e-05 (max)
13:10:34 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:10:34 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:10:34 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:10:34 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:10:34 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:10:34 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:10:34 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:10:34 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:10:34 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:10:34 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:10:34 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:10:34 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:10:34 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:10:34 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:10:34 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:10:34 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:10:34 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:10:34 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 342.278 (min) 388.027 (max)
13:10:34 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:10:34 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:10:34 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.335505, mean: 0.361026, max: 0.386475
13:10:34 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:10:34 DEBUG opendrift.models.physics_methods:1061: min: 3.155581, mean: 3.273026, max: 3.386804
13:10:34 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 3.155581, mean: 3.273026, max: 3.386804
13:10:34 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:10:34 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:34 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:10:34 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:10:34 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.073860 m/s - 0.079273 m/s)
13:10:34 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:10:34 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:10:34 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:10:34 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:10:34 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:10:34 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:34 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:10:34 INFO opendrift.models.basemodel:2038: 2024-11-09 23:00:00 - step 48 of 71 - 1000 active elements (0 deactivated)
13:10:34 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:10:34 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:10:34 DEBUG opendrift.models.basemodel:2057: 60.722328326457536 <- latitude -> 60.851944780673165
13:10:34 DEBUG opendrift.models.basemodel:2062: 4.296060778327223 <- longitude -> 4.3947268488675855
13:10:34 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:10:34 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:10:34 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:34 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:10:34 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:34 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:10:34 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:34 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:34 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:10:34 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:10:34 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:10:34 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:10:34 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:34 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:34 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:10:34 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:34 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:10:34 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:34 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:34 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:10:34 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-09 23:00:00 (before)
2024-11-10 00:00:00 (after)
13:10:37 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:10:37 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:10:37 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:10:37 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:10:37 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:10:37 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
13:10:37 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 36x36x2) for time before (2024-11-09 23:00:00)
13:10:37 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-09 23:00:00) in space (linearNDFast)
13:10:37 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:10:37 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:10:37 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.70394988187705 and -65.60528385417098 degrees.
13:10:37 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.70394988187705 and -65.60528385417098 degrees.
13:10:37 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:37 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:10:37 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:10:37 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:10:37 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:10:37 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:10:37 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.271335 (min) -0.0886663 (max)
13:10:37 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.535829 (min) 0.577636 (max)
13:10:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.65151 (min) -0.646821 (max)
13:10:37 DEBUG opendrift.models.basemodel.environment:905: x_wind: -3.10108 (min) -2.77399 (max)
13:10:37 DEBUG opendrift.models.basemodel.environment:905: y_wind: 3.2554 (min) 3.5248 (max)
13:10:37 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 3.25844e-05 (min) 3.39705e-05 (max)
13:10:37 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:10:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:10:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:10:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:10:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:10:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:10:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:10:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:10:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:10:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:10:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:10:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:10:37 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:10:37 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:10:37 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:10:37 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:10:37 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:10:37 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 341.508 (min) 393.7 (max)
13:10:37 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:10:37 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:10:37 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.457403, mean: 0.463852, max: 0.498873
13:10:37 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:10:37 DEBUG opendrift.models.physics_methods:1061: min: 3.684503, mean: 3.710246, max: 3.847908
13:10:37 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 3.684503, mean: 3.710246, max: 3.847908
13:10:37 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:10:37 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:37 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:10:37 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:10:37 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.086241 m/s - 0.090065 m/s)
13:10:37 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:10:37 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:10:37 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:10:37 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:10:37 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:10:37 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:37 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:10:37 INFO opendrift.models.basemodel:2038: 2024-11-10 00:00:00 - step 49 of 71 - 1000 active elements (0 deactivated)
13:10:37 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:10:37 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:10:37 DEBUG opendrift.models.basemodel:2057: 60.74260720045899 <- latitude -> 60.8721305992432
13:10:37 DEBUG opendrift.models.basemodel:2062: 4.274366615104373 <- longitude -> 4.378955702800162
13:10:37 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:10:37 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:10:37 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:37 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:10:37 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:37 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:10:37 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:37 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:37 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:10:37 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:10:37 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:10:37 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:10:37 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:37 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:37 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:10:37 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:37 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:10:37 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:37 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:37 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:10:37 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-10 00:00:00 (before)
2024-11-10 01:00:00 (after)
13:10:38 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:10:38 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:10:38 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:10:38 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:10:38 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:10:38 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 36x35x2) for time before (2024-11-10 00:00:00)
13:10:38 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-10 00:00:00) in space (linearNDFast)
13:10:38 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:10:38 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:10:38 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.72564404064629 and -65.62105497946936 degrees.
13:10:38 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.72564404064629 and -65.62105497946936 degrees.
13:10:38 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:38 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:10:38 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:10:38 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:10:38 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:10:38 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:10:38 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.302337 (min) -0.0742625 (max)
13:10:38 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.5307 (min) 0.578525 (max)
13:10:38 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.50327 (min) -0.498946 (max)
13:10:38 DEBUG opendrift.models.basemodel.environment:905: x_wind: -4.34427 (min) -4.15024 (max)
13:10:38 DEBUG opendrift.models.basemodel.environment:905: y_wind: 3.72889 (min) 4.07251 (max)
13:10:38 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -2.94114e-07 (min) 7.92361e-07 (max)
13:10:38 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:10:38 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:10:38 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:10:38 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:10:38 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:10:38 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:10:38 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:10:38 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:10:38 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:10:38 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:10:38 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:10:38 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:10:38 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:10:38 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:10:38 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:10:38 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:10:38 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:10:38 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 344.569 (min) 397.43 (max)
13:10:38 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:10:38 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:10:38 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.777335, mean: 0.795110, max: 0.871842
13:10:38 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:10:38 DEBUG opendrift.models.physics_methods:1061: min: 4.803233, mean: 4.857492, max: 5.086845
13:10:38 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 4.803233, mean: 4.857492, max: 5.086845
13:10:38 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:10:38 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:38 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:10:38 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:10:38 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.112426 m/s - 0.119064 m/s)
13:10:38 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:10:38 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:10:38 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:10:38 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:10:38 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:10:38 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:38 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:10:38 INFO opendrift.models.basemodel:2038: 2024-11-10 01:00:00 - step 50 of 71 - 1000 active elements (0 deactivated)
13:10:38 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:10:38 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:10:38 DEBUG opendrift.models.basemodel:2057: 60.763584413421285 <- latitude -> 60.89345153274641
13:10:38 DEBUG opendrift.models.basemodel:2062: 4.248560671083701 <- longitude -> 4.366974691699769
13:10:38 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:10:38 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:10:38 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:38 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:10:38 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:38 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:10:38 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:38 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:38 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:10:38 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:10:38 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:10:38 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:10:38 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:38 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:38 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:10:38 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:38 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:10:38 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:38 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:38 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:10:38 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-10 01:00:00 (before)
2024-11-10 02:00:00 (after)
13:10:39 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:10:39 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:10:39 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:10:39 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:10:39 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:10:39 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 35x37x2) for time before (2024-11-10 01:00:00)
13:10:39 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-10 01:00:00) in space (linearNDFast)
13:10:39 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:10:39 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:10:39 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.7514499747568 and -65.6330359818241 degrees.
13:10:39 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.7514499747568 and -65.6330359818241 degrees.
13:10:39 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:39 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:10:39 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:10:39 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:10:39 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:10:39 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:10:39 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.307011 (min) -0.0695753 (max)
13:10:39 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.519474 (min) 0.587971 (max)
13:10:39 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.332372 (min) -0.327971 (max)
13:10:39 DEBUG opendrift.models.basemodel.environment:905: x_wind: -3.9404 (min) -3.7687 (max)
13:10:39 DEBUG opendrift.models.basemodel.environment:905: y_wind: 4.37055 (min) 4.78488 (max)
13:10:39 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 3.92243e-05 (min) 4.61371e-05 (max)
13:10:39 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:10:39 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:10:39 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:10:39 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:10:39 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:10:39 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:10:39 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:10:39 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:10:39 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:10:39 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:10:39 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:10:39 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:10:39 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:10:39 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:10:39 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:10:39 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:10:39 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:10:39 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 353.671 (min) 397.701 (max)
13:10:39 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:10:39 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:10:39 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.820625, mean: 0.858258, max: 0.943258
13:10:39 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:10:39 DEBUG opendrift.models.physics_methods:1061: min: 4.935168, mean: 5.046560, max: 5.291087
13:10:39 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 4.935168, mean: 5.046560, max: 5.291087
13:10:39 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:10:39 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:39 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:10:39 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:10:39 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.115514 m/s - 0.123845 m/s)
13:10:39 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:10:39 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:10:39 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:10:39 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:10:39 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:10:39 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:39 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:10:39 INFO opendrift.models.basemodel:2038: 2024-11-10 02:00:00 - step 51 of 71 - 1000 active elements (0 deactivated)
13:10:39 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:10:39 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:10:39 DEBUG opendrift.models.basemodel:2057: 60.783675531284665 <- latitude -> 60.91553787979039
13:10:39 DEBUG opendrift.models.basemodel:2062: 4.22314535408221 <- longitude -> 4.357396078761415
13:10:39 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:10:39 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:10:39 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:39 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:10:39 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:39 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:10:39 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:39 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:39 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:10:39 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:10:39 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:10:39 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:10:39 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:39 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:39 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:10:39 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:39 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:10:39 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:39 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:39 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:10:39 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-10 02:00:00 (before)
2024-11-10 03:00:00 (after)
13:10:40 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:10:40 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:10:40 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:10:40 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:10:40 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:10:40 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 35x38x2) for time before (2024-11-10 02:00:00)
13:10:40 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-10 02:00:00) in space (linearNDFast)
13:10:40 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:10:40 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:10:40 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.77686528019801 and -65.64261460422357 degrees.
13:10:40 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.77686528019801 and -65.64261460422357 degrees.
13:10:40 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:40 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:10:40 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:10:40 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:10:40 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:10:40 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:10:40 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.307698 (min) -0.0901686 (max)
13:10:40 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.486138 (min) 0.579304 (max)
13:10:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.188645 (min) -0.177785 (max)
13:10:40 DEBUG opendrift.models.basemodel.environment:905: x_wind: -3.49986 (min) -3.27516 (max)
13:10:40 DEBUG opendrift.models.basemodel.environment:905: y_wind: 4.84081 (min) 5.60716 (max)
13:10:40 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 3.53213e-05 (min) 3.91874e-05 (max)
13:10:40 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:10:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:10:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:10:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:10:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:10:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:10:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:10:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:10:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:10:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:10:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:10:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:10:40 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:10:40 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:10:40 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:10:40 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:10:40 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:10:40 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 364.796 (min) 397.08 (max)
13:10:40 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:10:40 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:10:40 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.877788, mean: 0.935310, max: 1.037304
13:10:40 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:10:40 DEBUG opendrift.models.physics_methods:1061: min: 5.104161, mean: 5.267949, max: 5.548590
13:10:40 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 5.104161, mean: 5.267949, max: 5.548590
13:10:40 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:10:40 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:40 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:10:40 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:10:40 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.119470 m/s - 0.129872 m/s)
13:10:40 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:10:40 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:10:40 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:10:40 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:10:40 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:10:40 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:40 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:10:40 INFO opendrift.models.basemodel:2038: 2024-11-10 03:00:00 - step 52 of 71 - 1000 active elements (0 deactivated)
13:10:40 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:10:40 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:10:40 DEBUG opendrift.models.basemodel:2057: 60.8025097192377 <- latitude -> 60.93787544948202
13:10:40 DEBUG opendrift.models.basemodel:2062: 4.198366475438455 <- longitude -> 4.346805835084832
13:10:40 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:10:40 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:10:40 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:40 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:10:40 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:40 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:10:40 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:40 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:40 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:10:40 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:10:40 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:10:40 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:10:40 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:40 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:40 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:10:40 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:40 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:10:40 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:40 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:40 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:10:40 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-10 03:00:00 (before)
2024-11-10 04:00:00 (after)
13:10:41 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:10:41 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:10:41 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:10:41 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:10:41 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:10:41 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 35x39x2) for time before (2024-11-10 03:00:00)
13:10:41 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-10 03:00:00) in space (linearNDFast)
13:10:41 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:10:41 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:10:41 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.80164416280792 and -65.65320483714599 degrees.
13:10:41 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.80164416280792 and -65.65320483714599 degrees.
13:10:41 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:41 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:10:41 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:10:41 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:10:41 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:10:41 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:10:41 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.339326 (min) -0.121645 (max)
13:10:41 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.444054 (min) 0.548142 (max)
13:10:41 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.0852981 (min) -0.0673332 (max)
13:10:41 DEBUG opendrift.models.basemodel.environment:905: x_wind: -3.44692 (min) -2.47529 (max)
13:10:41 DEBUG opendrift.models.basemodel.environment:905: y_wind: 5.3349 (min) 6.50967 (max)
13:10:41 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 2.33356e-05 (min) 2.48673e-05 (max)
13:10:41 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:10:41 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:10:41 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:10:41 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:10:41 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:10:41 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:10:41 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:10:41 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:10:41 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:10:41 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:10:41 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:10:41 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:10:41 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:10:41 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:10:41 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:10:41 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:10:41 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:10:41 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 345.466 (min) 397.078 (max)
13:10:41 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:10:41 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:10:41 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.992424, mean: 1.086988, max: 1.193171
13:10:41 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:10:41 DEBUG opendrift.models.physics_methods:1061: min: 5.427230, mean: 5.679153, max: 5.950876
13:10:41 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 5.427230, mean: 5.679153, max: 5.950876
13:10:41 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:10:41 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:41 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:10:41 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:10:41 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.127031 m/s - 0.139288 m/s)
13:10:41 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:10:41 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:10:41 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:10:41 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:10:41 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:10:41 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:41 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:10:41 INFO opendrift.models.basemodel:2038: 2024-11-10 04:00:00 - step 53 of 71 - 1000 active elements (0 deactivated)
13:10:41 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:10:41 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:10:41 DEBUG opendrift.models.basemodel:2057: 60.82030335209991 <- latitude -> 60.95975023317514
13:10:41 DEBUG opendrift.models.basemodel:2062: 4.172531508757488 <- longitude -> 4.334197518330823
13:10:41 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:10:41 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:10:41 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:41 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:10:41 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:41 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:10:41 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:41 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:41 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:10:41 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:10:41 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:10:41 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:10:41 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:41 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:41 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:10:41 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:41 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:10:41 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:41 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:41 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:10:41 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-10 04:00:00 (before)
2024-11-10 05:00:00 (after)
13:10:42 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:10:42 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:10:42 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:10:42 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:10:42 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:10:42 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 35x40x2) for time before (2024-11-10 04:00:00)
13:10:42 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-10 04:00:00) in space (linearNDFast)
13:10:42 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:10:42 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:10:42 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.8274791161702 and -65.66581315111765 degrees.
13:10:42 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.8274791161702 and -65.66581315111765 degrees.
13:10:42 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:42 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:10:42 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:10:42 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:10:42 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:10:42 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:10:42 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.361991 (min) -0.171214 (max)
13:10:42 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.406417 (min) 0.533012 (max)
13:10:42 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.0196535 (min) 0.00582949 (max)
13:10:42 DEBUG opendrift.models.basemodel.environment:905: x_wind: -3.24043 (min) -2.78749 (max)
13:10:42 DEBUG opendrift.models.basemodel.environment:905: y_wind: 5.47389 (min) 6.72956 (max)
13:10:42 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 5.03794e-06 (min) 7.33308e-06 (max)
13:10:42 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:10:42 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:10:42 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:10:42 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:10:42 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:10:42 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:10:42 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:10:42 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:10:42 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:10:42 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:10:42 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:10:42 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:10:42 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:10:42 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:10:42 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:10:42 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:10:42 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:10:42 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 325.471 (min) 398.016 (max)
13:10:42 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:10:42 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:10:42 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.995091, mean: 1.130783, max: 1.305204
13:10:42 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:10:42 DEBUG opendrift.models.physics_methods:1061: min: 5.434517, mean: 5.791474, max: 6.223989
13:10:42 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 5.434517, mean: 5.791474, max: 6.223989
13:10:42 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:10:42 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:42 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:10:42 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:10:42 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.127202 m/s - 0.145681 m/s)
13:10:42 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:10:42 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:10:42 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:10:42 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:10:42 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:10:42 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:42 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:10:42 INFO opendrift.models.basemodel:2038: 2024-11-10 05:00:00 - step 54 of 71 - 1000 active elements (0 deactivated)
13:10:42 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:10:42 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:10:42 DEBUG opendrift.models.basemodel:2057: 60.83697053336713 <- latitude -> 60.981316738439105
13:10:42 DEBUG opendrift.models.basemodel:2062: 4.144769204521586 <- longitude -> 4.318577843253933
13:10:42 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:10:42 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:10:42 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:42 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:10:42 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:42 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:10:42 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:42 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:42 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:10:42 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:10:42 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:10:42 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:10:42 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:42 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:42 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:10:42 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:42 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:10:42 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:42 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:42 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:10:42 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-10 05:00:00 (before)
2024-11-10 06:00:00 (after)
13:10:43 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:10:43 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:10:43 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:10:43 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:10:43 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:10:43 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 35x41x2) for time before (2024-11-10 05:00:00)
13:10:43 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-10 05:00:00) in space (linearNDFast)
13:10:43 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:10:43 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:10:43 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.8552414255528 and -65.68143282083503 degrees.
13:10:43 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.8552414255528 and -65.68143282083503 degrees.
13:10:43 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:43 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:10:43 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:10:43 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:10:43 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:10:43 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:10:43 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.382143 (min) -0.197435 (max)
13:10:43 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.385887 (min) 0.576221 (max)
13:10:43 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.0250064 (min) 0.00581226 (max)
13:10:43 DEBUG opendrift.models.basemodel.environment:905: x_wind: -2.92195 (min) -2.32674 (max)
13:10:43 DEBUG opendrift.models.basemodel.environment:905: y_wind: 6.04461 (min) 7.37847 (max)
13:10:43 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -1.53099e-05 (min) -1.33424e-05 (max)
13:10:43 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:10:43 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:10:43 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:10:43 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:10:43 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:10:43 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:10:43 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:10:43 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:10:43 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:10:43 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:10:43 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:10:43 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:10:43 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:10:43 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:10:43 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:10:43 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:10:43 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:10:43 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 309.036 (min) 397.734 (max)
13:10:43 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:10:43 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:10:43 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.108848, mean: 1.295304, max: 1.472446
13:10:43 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:10:43 DEBUG opendrift.models.physics_methods:1061: min: 5.736746, mean: 6.198543, max: 6.610727
13:10:43 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 5.736746, mean: 6.198543, max: 6.610727
13:10:43 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:10:43 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:43 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:10:43 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:10:43 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.134276 m/s - 0.154733 m/s)
13:10:43 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:10:43 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:10:43 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:10:43 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:10:43 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:10:43 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:43 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:10:43 INFO opendrift.models.basemodel:2038: 2024-11-10 06:00:00 - step 55 of 71 - 1000 active elements (0 deactivated)
13:10:43 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:10:43 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:10:43 DEBUG opendrift.models.basemodel:2057: 60.85334300184847 <- latitude -> 61.004698377897775
13:10:43 DEBUG opendrift.models.basemodel:2062: 4.11704709129032 <- longitude -> 4.301633114259536
13:10:43 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:10:43 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:10:43 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:43 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:10:43 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:43 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:10:43 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:43 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:43 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:10:43 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:10:43 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:10:43 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:10:43 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:43 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:43 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:10:43 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:43 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:10:43 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:43 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:43 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:10:43 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-10 06:00:00 (before)
2024-11-10 07:00:00 (after)
13:10:44 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:10:44 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:10:44 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:10:44 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:10:44 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:10:44 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 36x42x2) for time before (2024-11-10 06:00:00)
13:10:44 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-10 06:00:00) in space (linearNDFast)
13:10:44 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:10:44 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:10:44 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.88296353340398 and -65.6983775396897 degrees.
13:10:44 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.88296353340398 and -65.6983775396897 degrees.
13:10:44 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:44 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:10:44 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:10:44 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:10:44 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:10:44 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:10:44 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.405368 (min) -0.21293 (max)
13:10:44 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.386148 (min) 0.623328 (max)
13:10:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.109915 (min) -0.0761025 (max)
13:10:44 DEBUG opendrift.models.basemodel.environment:905: x_wind: -3.57848 (min) -3.00492 (max)
13:10:44 DEBUG opendrift.models.basemodel.environment:905: y_wind: 6.01952 (min) 7.52565 (max)
13:10:44 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -3.44484e-05 (min) -3.30053e-05 (max)
13:10:44 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:10:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:10:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:10:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:10:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:10:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:10:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:10:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:10:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:10:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:10:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:10:44 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:10:44 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:10:44 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:10:44 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:10:44 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:10:44 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:10:44 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 300.513 (min) 398.836 (max)
13:10:44 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:10:44 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:10:44 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.206388, mean: 1.348185, max: 1.615358
13:10:44 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:10:44 DEBUG opendrift.models.physics_methods:1061: min: 5.983744, mean: 6.323028, max: 6.924111
13:10:44 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 5.983744, mean: 6.323028, max: 6.924111
13:10:44 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:10:44 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:44 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:10:44 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:10:44 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.140057 m/s - 0.162068 m/s)
13:10:44 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:10:44 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:10:44 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:10:44 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:10:44 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:10:44 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:44 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:10:44 INFO opendrift.models.basemodel:2038: 2024-11-10 07:00:00 - step 56 of 71 - 1000 active elements (0 deactivated)
13:10:44 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:10:44 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:10:44 DEBUG opendrift.models.basemodel:2057: 60.86970752586518 <- latitude -> 61.02951858996663
13:10:44 DEBUG opendrift.models.basemodel:2062: 4.088166364905037 <- longitude -> 4.282783054126833
13:10:44 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:10:44 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:10:44 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:44 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:10:44 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:44 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:10:44 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:44 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:44 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:10:44 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:10:44 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:10:44 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:10:44 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:44 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:44 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:10:44 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:44 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:10:44 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:44 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:44 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:10:44 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-10 07:00:00 (before)
2024-11-10 08:00:00 (after)
13:10:44 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:10:44 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:10:44 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:10:45 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:10:45 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:10:45 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 37x43x2) for time before (2024-11-10 07:00:00)
13:10:45 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-10 07:00:00) in space (linearNDFast)
13:10:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:10:45 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:10:45 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.91184425628455 and -65.71722760962481 degrees.
13:10:45 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.91184425628455 and -65.71722760962481 degrees.
13:10:45 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:45 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:10:45 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:10:45 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:10:45 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:10:45 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:10:45 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.434351 (min) -0.197771 (max)
13:10:45 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.397597 (min) 0.679118 (max)
13:10:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.253805 (min) -0.21847 (max)
13:10:45 DEBUG opendrift.models.basemodel.environment:905: x_wind: -3.17742 (min) -2.89207 (max)
13:10:45 DEBUG opendrift.models.basemodel.environment:905: y_wind: 7.61479 (min) 8.25555 (max)
13:10:45 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -4.73405e-05 (min) -4.57682e-05 (max)
13:10:45 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:10:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:10:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:10:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:10:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:10:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:10:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:10:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:10:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:10:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:10:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:10:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:10:45 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:10:45 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:10:45 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:10:45 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:10:45 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:10:45 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 298.842 (min) 397.27 (max)
13:10:45 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:10:45 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:10:45 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.674792, mean: 1.811489, max: 1.904858
13:10:45 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:10:45 DEBUG opendrift.models.physics_methods:1061: min: 7.050340, mean: 7.331899, max: 7.519014
13:10:45 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.050340, mean: 7.331899, max: 7.519014
13:10:45 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:10:45 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:45 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:10:45 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:10:45 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.165022 m/s - 0.175992 m/s)
13:10:45 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:10:45 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:10:45 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:10:45 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:10:45 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:10:45 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:45 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:10:45 INFO opendrift.models.basemodel:2038: 2024-11-10 08:00:00 - step 57 of 71 - 1000 active elements (0 deactivated)
13:10:45 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:10:45 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:10:45 DEBUG opendrift.models.basemodel:2057: 60.887797670869155 <- latitude -> 61.05661720353575
13:10:45 DEBUG opendrift.models.basemodel:2062: 4.056745807752672 <- longitude -> 4.265383013361017
13:10:45 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:10:45 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:10:45 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:45 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:10:45 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:45 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:10:45 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:45 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:45 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:10:45 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:10:45 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:10:45 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:10:45 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:45 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:45 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:10:45 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:45 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:10:45 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:45 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:45 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:10:45 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-10 08:00:00 (before)
2024-11-10 09:00:00 (after)
13:10:46 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:10:46 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:10:46 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:10:46 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:10:46 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:10:46 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity']
13:10:46 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 37x44x2) for time before (2024-11-10 08:00:00)
13:10:46 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-10 08:00:00) in space (linearNDFast)
13:10:46 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:10:46 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:10:46 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.94326480402017 and -65.73462763763045 degrees.
13:10:46 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.94326480402017 and -65.73462763763045 degrees.
13:10:46 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:46 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:10:46 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:10:46 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:10:46 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:10:46 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:10:46 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.466382 (min) -0.202425 (max)
13:10:46 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.370761 (min) 0.758919 (max)
13:10:46 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.423295 (min) -0.391464 (max)
13:10:46 DEBUG opendrift.models.basemodel.environment:905: x_wind: -2.97017 (min) -2.41428 (max)
13:10:46 DEBUG opendrift.models.basemodel.environment:905: y_wind: 8.50281 (min) 8.86848 (max)
13:10:46 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -4.8438e-05 (min) -4.69894e-05 (max)
13:10:46 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:10:46 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:10:46 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:10:46 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:10:46 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:10:46 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:10:46 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:10:46 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:10:46 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:10:46 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:10:46 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:10:46 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:10:46 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:10:46 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:10:46 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:10:46 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:10:46 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:10:46 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 298.582 (min) 393.582 (max)
13:10:46 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:10:46 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:10:46 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.921914, mean: 2.045317, max: 2.151809
13:10:46 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:10:46 DEBUG opendrift.models.physics_methods:1061: min: 7.552602, mean: 7.790858, max: 7.991558
13:10:46 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.552602, mean: 7.790858, max: 7.991558
13:10:46 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:10:46 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:46 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:10:46 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:10:46 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.176779 m/s - 0.187053 m/s)
13:10:46 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:10:46 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:10:46 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:10:46 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:10:46 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:10:46 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:46 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:10:46 INFO opendrift.models.basemodel:2038: 2024-11-10 09:00:00 - step 58 of 71 - 1000 active elements (0 deactivated)
13:10:46 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:10:46 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:10:46 DEBUG opendrift.models.basemodel:2057: 60.90609691514527 <- latitude -> 61.08632571112769
13:10:46 DEBUG opendrift.models.basemodel:2062: 4.025048049596934 <- longitude -> 4.248753564559257
13:10:46 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:10:46 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:10:46 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:46 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:10:46 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:46 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:10:46 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:46 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:46 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:10:46 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:10:46 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:10:46 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:10:46 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:46 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:46 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:10:46 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:46 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:10:46 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:46 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:46 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:10:46 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-10 09:00:00 (before)
2024-11-10 10:00:00 (after)
13:10:47 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:10:47 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:10:47 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:10:47 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:10:47 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:10:47 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
13:10:47 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 38x46x2) for time before (2024-11-10 09:00:00)
13:10:47 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-10 09:00:00) in space (linearNDFast)
13:10:47 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:10:47 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:10:47 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.9749625609289 and -65.75125707859357 degrees.
13:10:47 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -65.9749625609289 and -65.75125707859357 degrees.
13:10:47 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:47 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:10:47 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:10:47 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:10:47 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:10:47 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:10:47 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.478243 (min) -0.242875 (max)
13:10:47 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.383516 (min) 0.842651 (max)
13:10:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.56361 (min) -0.539919 (max)
13:10:47 DEBUG opendrift.models.basemodel.environment:905: x_wind: -3.44091 (min) -2.65335 (max)
13:10:47 DEBUG opendrift.models.basemodel.environment:905: y_wind: 9.22496 (min) 9.52795 (max)
13:10:47 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -3.55178e-05 (min) -3.23727e-05 (max)
13:10:47 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:10:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:10:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:10:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:10:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:10:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:10:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:10:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:10:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:10:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:10:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:10:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:10:47 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:10:47 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:10:47 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:10:47 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:10:47 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:10:47 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 298.398 (min) 384.928 (max)
13:10:47 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:10:47 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:10:47 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.275950, mean: 2.360772, max: 2.506793
13:10:47 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:10:47 DEBUG opendrift.models.physics_methods:1061: min: 8.218848, mean: 8.369466, max: 8.625589
13:10:47 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.218848, mean: 8.369466, max: 8.625589
13:10:47 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:10:47 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:47 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:10:47 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:10:47 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.192373 m/s - 0.201893 m/s)
13:10:47 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:10:47 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:10:47 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:10:47 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:10:47 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:10:47 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:47 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:10:47 INFO opendrift.models.basemodel:2038: 2024-11-10 10:00:00 - step 59 of 71 - 1000 active elements (0 deactivated)
13:10:47 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:10:47 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:10:47 DEBUG opendrift.models.basemodel:2057: 60.92446054187955 <- latitude -> 61.118924507582705
13:10:47 DEBUG opendrift.models.basemodel:2062: 3.9941647547433137 <- longitude -> 4.229112923471409
13:10:47 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:10:47 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:10:47 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:47 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:10:47 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:47 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:10:47 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:47 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:47 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:10:47 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:10:47 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:10:47 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:10:47 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:47 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:47 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:10:47 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:47 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:10:47 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:47 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:47 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:10:47 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-10 10:00:00 (before)
2024-11-10 11:00:00 (after)
13:10:48 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:10:48 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:10:48 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:10:48 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:10:48 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:10:48 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
13:10:48 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 40x48x2) for time before (2024-11-10 10:00:00)
13:10:48 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-10 10:00:00) in space (linearNDFast)
13:10:48 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:10:48 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:10:48 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -66.00584583813576 and -65.77089772161224 degrees.
13:10:48 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -66.00584583813576 and -65.77089772161224 degrees.
13:10:48 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:48 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:10:48 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:10:48 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:10:48 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:10:48 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:10:48 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.47014 (min) -0.297511 (max)
13:10:48 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.438075 (min) 0.918069 (max)
13:10:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.624918 (min) -0.603688 (max)
13:10:48 DEBUG opendrift.models.basemodel.environment:905: x_wind: -1.57918 (min) 0.548813 (max)
13:10:48 DEBUG opendrift.models.basemodel.environment:905: y_wind: 10.1783 (min) 11.4028 (max)
13:10:48 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -4.01795e-06 (min) -2.86348e-06 (max)
13:10:48 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:10:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:10:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:10:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:10:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:10:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:10:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:10:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:10:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:10:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:10:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:10:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:10:48 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:10:48 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:10:48 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:10:48 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:10:48 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:10:48 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 298.298 (min) 370.363 (max)
13:10:48 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:10:48 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:10:48 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.609869, mean: 3.005117, max: 3.199599
13:10:48 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:10:48 DEBUG opendrift.models.physics_methods:1061: min: 8.801140, mean: 9.440579, max: 9.744898
13:10:48 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.801140, mean: 9.440579, max: 9.744898
13:10:48 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:10:48 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:48 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:10:48 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:10:48 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.206002 m/s - 0.228092 m/s)
13:10:48 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:10:48 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:10:48 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:10:48 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:10:48 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:10:48 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:48 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:10:48 INFO opendrift.models.basemodel:2038: 2024-11-10 11:00:00 - step 60 of 71 - 1000 active elements (0 deactivated)
13:10:48 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:10:48 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:10:48 DEBUG opendrift.models.basemodel:2057: 60.945188934530165 <- latitude -> 61.15410616703036
13:10:48 DEBUG opendrift.models.basemodel:2062: 3.9742172335861956 <- longitude -> 4.205853446610751
13:10:48 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:10:48 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:10:48 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:48 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:10:48 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:48 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:10:48 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:48 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:48 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:10:48 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:10:48 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:10:48 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:10:48 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:48 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:48 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:10:48 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:48 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:10:48 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:48 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:48 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:10:48 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-10 11:00:00 (before)
2024-11-10 12:00:00 (after)
13:10:48 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:10:48 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:10:48 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:10:48 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:10:48 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:10:48 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 42x48x2) for time before (2024-11-10 11:00:00)
13:10:48 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-10 11:00:00) in space (linearNDFast)
13:10:48 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:10:48 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:10:49 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -66.0257933500325 and -65.79415719223354 degrees.
13:10:49 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -66.0257933500325 and -65.79415719223354 degrees.
13:10:49 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:49 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:10:49 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:10:49 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:10:49 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:10:49 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:10:49 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.506883 (min) -0.249817 (max)
13:10:49 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.528982 (min) 0.991019 (max)
13:10:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.584861 (min) -0.561189 (max)
13:10:49 DEBUG opendrift.models.basemodel.environment:905: x_wind: -2.23314 (min) 0.248586 (max)
13:10:49 DEBUG opendrift.models.basemodel.environment:905: y_wind: 10.1474 (min) 11.2294 (max)
13:10:49 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 2.37958e-05 (min) 2.63193e-05 (max)
13:10:49 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:10:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:10:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:10:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:10:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:10:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:10:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:10:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:10:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:10:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:10:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:10:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:10:49 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:10:49 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:10:49 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:10:49 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:10:49 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:10:49 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 298.508 (min) 351.428 (max)
13:10:49 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:10:49 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:10:49 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.533069, mean: 2.934748, max: 3.140423
13:10:49 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:10:49 DEBUG opendrift.models.physics_methods:1061: min: 8.670679, mean: 9.329673, max: 9.654363
13:10:49 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.670679, mean: 9.329673, max: 9.654363
13:10:49 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:10:49 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:49 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:10:49 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:10:49 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.202949 m/s - 0.225973 m/s)
13:10:49 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:10:49 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:10:49 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:10:49 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:10:49 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:10:49 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:49 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:10:49 INFO opendrift.models.basemodel:2038: 2024-11-10 12:00:00 - step 61 of 71 - 1000 active elements (0 deactivated)
13:10:49 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:10:49 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:10:49 DEBUG opendrift.models.basemodel:2057: 60.9690534579575 <- latitude -> 61.19096260414093
13:10:49 DEBUG opendrift.models.basemodel:2062: 3.957446461364956 <- longitude -> 4.177171156708712
13:10:49 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:10:49 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:10:49 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:49 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:10:49 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:49 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:10:49 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:49 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:49 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:10:49 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:10:49 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:10:49 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:10:49 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:49 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:49 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:10:49 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:49 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:10:49 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:49 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:49 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:10:49 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-10 12:00:00 (before)
2024-11-10 13:00:00 (after)
13:10:49 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:10:49 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:10:49 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:10:49 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:10:49 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:10:49 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 44x48x2) for time before (2024-11-10 12:00:00)
13:10:49 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-10 12:00:00) in space (linearNDFast)
13:10:49 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:10:49 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:10:49 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -66.04256410035035 and -65.82283945924641 degrees.
13:10:49 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -66.04256410035035 and -65.82283945924641 degrees.
13:10:49 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:49 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:10:49 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:10:49 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:10:49 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:10:49 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:10:49 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.509718 (min) -0.209267 (max)
13:10:49 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.611391 (min) 1.05567 (max)
13:10:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.46003 (min) -0.425145 (max)
13:10:49 DEBUG opendrift.models.basemodel.environment:905: x_wind: -2.72072 (min) -1.65455 (max)
13:10:49 DEBUG opendrift.models.basemodel.environment:905: y_wind: 10.4086 (min) 10.9283 (max)
13:10:49 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 4.17268e-05 (min) 4.5974e-05 (max)
13:10:49 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:10:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:10:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:10:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:10:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:10:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:10:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:10:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:10:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:10:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:10:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:10:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:10:49 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:10:49 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:10:49 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:10:49 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:10:49 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:10:49 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 298.84 (min) 328.217 (max)
13:10:49 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:10:49 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:10:49 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.843191, mean: 2.959664, max: 3.005256
13:10:49 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:10:49 DEBUG opendrift.models.physics_methods:1061: min: 9.186130, mean: 9.372172, max: 9.444312
13:10:49 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 9.186130, mean: 9.372172, max: 9.444312
13:10:49 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:10:49 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:49 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:10:49 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:10:49 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.215013 m/s - 0.221056 m/s)
13:10:49 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:10:49 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:10:49 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:10:49 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:10:49 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:10:49 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:49 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:10:49 INFO opendrift.models.basemodel:2038: 2024-11-10 13:00:00 - step 62 of 71 - 1000 active elements (0 deactivated)
13:10:49 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:10:49 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:10:49 DEBUG opendrift.models.basemodel:2057: 60.99553719974084 <- latitude -> 61.22953749342277
13:10:49 DEBUG opendrift.models.basemodel:2062: 3.9412071979002663 <- longitude -> 4.145994099556256
13:10:49 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:10:49 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:10:49 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:49 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:10:49 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:49 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:10:49 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:49 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:49 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:10:49 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:10:49 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:10:49 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:10:49 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:49 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:49 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:10:49 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:49 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:10:49 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:49 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:49 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:10:49 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-10 13:00:00 (before)
2024-11-10 14:00:00 (after)
13:10:50 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:10:50 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:10:50 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:10:50 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:10:50 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:10:50 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 46x48x2) for time before (2024-11-10 13:00:00)
13:10:50 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-10 13:00:00) in space (linearNDFast)
13:10:50 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:10:50 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:10:50 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -66.05880335016484 and -65.85401651983346 degrees.
13:10:50 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -66.05880335016484 and -65.85401651983346 degrees.
13:10:50 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:50 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:10:50 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:10:50 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:10:50 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:10:50 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:10:50 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.490226 (min) -0.166551 (max)
13:10:50 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.64232 (min) 1.07389 (max)
13:10:50 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.284362 (min) -0.243706 (max)
13:10:50 DEBUG opendrift.models.basemodel.environment:905: x_wind: -3.2849 (min) -2.39658 (max)
13:10:50 DEBUG opendrift.models.basemodel.environment:905: y_wind: 10.6134 (min) 11.3866 (max)
13:10:50 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 4.83056e-05 (min) 5.09463e-05 (max)
13:10:50 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:10:50 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:10:50 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:10:50 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:10:50 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:10:50 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:10:50 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:10:50 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:10:50 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:10:50 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:10:50 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:10:50 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:10:50 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:10:50 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:10:50 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:10:50 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:10:50 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:10:50 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 299.238 (min) 309.543 (max)
13:10:50 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:10:50 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:10:50 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.971092, mean: 3.145820, max: 3.432700
13:10:50 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:10:50 DEBUG opendrift.models.physics_methods:1061: min: 9.390476, mean: 9.659591, max: 10.093633
13:10:50 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 9.390476, mean: 9.659591, max: 10.093633
13:10:50 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:10:50 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:50 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:10:50 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:10:50 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.219796 m/s - 0.236255 m/s)
13:10:50 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:10:50 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:10:50 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:10:50 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:10:50 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:10:50 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:50 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:10:50 INFO opendrift.models.basemodel:2038: 2024-11-10 14:00:00 - step 63 of 71 - 1000 active elements (0 deactivated)
13:10:50 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:10:50 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:10:50 DEBUG opendrift.models.basemodel:2057: 61.023560800498416 <- latitude -> 61.26877740784066
13:10:50 DEBUG opendrift.models.basemodel:2062: 3.926795535899368 <- longitude -> 4.1122663035756934
13:10:50 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:10:50 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:10:50 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:50 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:10:50 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:50 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:10:50 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:50 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:50 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:10:50 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:10:50 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:10:50 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:10:50 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:50 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:50 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:10:50 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:50 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:10:50 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:50 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:50 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:10:50 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-10 14:00:00 (before)
2024-11-10 15:00:00 (after)
13:10:51 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:10:51 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:10:51 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:10:51 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:10:51 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:10:51 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 48x47x2) for time before (2024-11-10 14:00:00)
13:10:51 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-10 14:00:00) in space (linearNDFast)
13:10:51 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:10:51 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:10:51 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -66.07321501124471 and -65.88774431913585 degrees.
13:10:51 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -66.07321501124471 and -65.88774431913585 degrees.
13:10:51 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:51 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:10:51 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:10:51 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:10:51 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:10:51 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:10:51 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.46908 (min) -0.0924622 (max)
13:10:51 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.675287 (min) 1.06766 (max)
13:10:51 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.11227 (min) -0.0618034 (max)
13:10:51 DEBUG opendrift.models.basemodel.environment:905: x_wind: -1.92793 (min) -0.732268 (max)
13:10:51 DEBUG opendrift.models.basemodel.environment:905: y_wind: 10.0892 (min) 10.558 (max)
13:10:51 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 4.33153e-05 (min) 4.79609e-05 (max)
13:10:51 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:10:51 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:10:51 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:10:51 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:10:51 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:10:51 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:10:51 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:10:51 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:10:51 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:10:51 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:10:51 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:10:51 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:10:51 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:10:51 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:10:51 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:10:51 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:10:51 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:10:51 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 299.37 (min) 304.66 (max)
13:10:51 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:10:51 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:10:51 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.579598, mean: 2.616541, max: 2.804549
13:10:51 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:10:51 DEBUG opendrift.models.physics_methods:1061: min: 8.749951, mean: 8.812108, max: 9.123492
13:10:51 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.749951, mean: 8.812108, max: 9.123492
13:10:51 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:10:51 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:51 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:10:51 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:10:51 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.204804 m/s - 0.213547 m/s)
13:10:51 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:10:51 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:10:51 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:10:51 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:10:51 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:10:51 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:51 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:10:51 INFO opendrift.models.basemodel:2038: 2024-11-10 15:00:00 - step 64 of 71 - 1000 active elements (0 deactivated)
13:10:51 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:10:51 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:10:51 DEBUG opendrift.models.basemodel:2057: 61.05189343749254 <- latitude -> 61.30637172008153
13:10:51 DEBUG opendrift.models.basemodel:2062: 3.9187601329528143 <- longitude -> 4.080443439187074
13:10:51 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:10:51 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:10:51 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:51 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:10:51 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:51 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:10:51 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:51 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:51 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:10:51 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:10:51 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:10:51 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:10:51 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:51 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:51 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:10:51 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:51 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:10:51 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:51 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:51 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:10:51 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-10 15:00:00 (before)
2024-11-10 16:00:00 (after)
13:10:52 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:10:52 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:10:52 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:10:52 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:10:52 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:10:52 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 50x46x2) for time before (2024-11-10 15:00:00)
13:10:52 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-10 15:00:00) in space (linearNDFast)
13:10:52 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:10:52 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:10:52 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -66.08125039796955 and -65.91956717064365 degrees.
13:10:52 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -66.08125039796955 and -65.91956717064365 degrees.
13:10:52 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:52 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:10:52 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:10:52 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:10:52 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:10:52 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:10:52 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.454557 (min) -0.012165 (max)
13:10:52 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.693732 (min) 1.07846 (max)
13:10:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0.0314394 (min) 0.0888321 (max)
13:10:52 DEBUG opendrift.models.basemodel.environment:905: x_wind: 1.11147 (min) 1.28215 (max)
13:10:52 DEBUG opendrift.models.basemodel.environment:905: y_wind: 10.902 (min) 11.1096 (max)
13:10:52 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 3.28826e-05 (min) 3.61285e-05 (max)
13:10:52 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:10:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:10:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:10:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:10:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:10:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:10:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:10:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:10:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:10:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:10:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:10:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:10:52 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:10:52 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:10:52 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:10:52 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:10:52 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:10:52 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 299.444 (min) 305.21 (max)
13:10:52 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:10:52 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:10:52 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.954187, mean: 2.999976, max: 3.067017
13:10:52 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:10:52 DEBUG opendrift.models.physics_methods:1061: min: 9.363723, mean: 9.435901, max: 9.540863
13:10:52 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 9.363723, mean: 9.435901, max: 9.540863
13:10:52 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:10:52 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:52 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:10:52 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:10:52 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.219170 m/s - 0.223316 m/s)
13:10:52 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:10:52 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:10:52 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:10:52 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:10:52 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:10:52 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:52 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:10:52 INFO opendrift.models.basemodel:2038: 2024-11-10 16:00:00 - step 65 of 71 - 1000 active elements (0 deactivated)
13:10:52 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:10:52 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:10:52 DEBUG opendrift.models.basemodel:2057: 61.08148115516268 <- latitude -> 61.34245962343137
13:10:52 DEBUG opendrift.models.basemodel:2062: 3.910424248835821 <- longitude -> 4.052263204031803
13:10:52 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:10:52 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:10:52 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:52 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:10:52 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:52 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:10:52 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:52 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:52 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:10:52 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:10:52 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:10:52 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:10:52 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:52 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:52 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:10:52 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:52 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:10:52 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:52 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:52 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:10:52 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-10 16:00:00 (before)
2024-11-10 17:00:00 (after)
13:10:53 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:10:53 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:10:53 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:10:53 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:10:53 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:10:53 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 52x45x2) for time before (2024-11-10 16:00:00)
13:10:53 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-10 16:00:00) in space (linearNDFast)
13:10:53 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:10:53 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:10:53 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -66.08958630989041 and -65.94774740144443 degrees.
13:10:53 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -66.08958630989041 and -65.94774740144443 degrees.
13:10:53 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:53 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:10:53 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:10:53 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:10:53 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:10:53 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:10:53 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.439745 (min) 0.0523898 (max)
13:10:53 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.694097 (min) 1.08283 (max)
13:10:53 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0.131021 (min) 0.190777 (max)
13:10:53 DEBUG opendrift.models.basemodel.environment:905: x_wind: 0.787557 (min) 1.32351 (max)
13:10:53 DEBUG opendrift.models.basemodel.environment:905: y_wind: 11.1603 (min) 11.5367 (max)
13:10:53 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 1.67514e-05 (min) 1.82504e-05 (max)
13:10:53 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:10:53 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:10:53 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:10:53 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:10:53 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:10:53 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:10:53 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:10:53 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:10:53 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:10:53 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:10:53 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:10:53 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:10:53 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:10:53 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:10:53 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:10:53 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:10:53 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:10:53 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 299.441 (min) 306.114 (max)
13:10:53 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:10:53 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:10:53 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.079369, mean: 3.153182, max: 3.303133
13:10:53 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:10:53 DEBUG opendrift.models.physics_methods:1061: min: 9.560057, mean: 9.673305, max: 9.901308
13:10:53 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 9.560057, mean: 9.673305, max: 9.901308
13:10:53 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:10:53 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:53 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:10:53 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:10:53 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.223766 m/s - 0.231753 m/s)
13:10:53 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:10:53 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:10:53 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:10:53 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:10:53 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:10:53 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:53 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:10:53 INFO opendrift.models.basemodel:2038: 2024-11-10 17:00:00 - step 66 of 71 - 1000 active elements (0 deactivated)
13:10:53 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:10:53 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:10:53 DEBUG opendrift.models.basemodel:2057: 61.1113373166241 <- latitude -> 61.37610453611134
13:10:53 DEBUG opendrift.models.basemodel:2062: 3.9022006291057845 <- longitude -> 4.02475803808476
13:10:53 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:10:53 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:10:53 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:53 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:10:53 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:53 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:10:53 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:53 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:53 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:10:53 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:10:53 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:10:53 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:10:53 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:53 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:53 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:10:53 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:53 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:10:53 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:53 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:53 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:10:53 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-10 17:00:00 (before)
2024-11-10 18:00:00 (after)
13:10:54 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:10:54 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:10:54 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:10:54 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:10:54 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:10:54 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 53x43x2) for time before (2024-11-10 17:00:00)
13:10:54 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-10 17:00:00) in space (linearNDFast)
13:10:54 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:10:54 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:10:54 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -66.09780991587654 and -65.97525255439871 degrees.
13:10:54 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -66.09780991587654 and -65.97525255439871 degrees.
13:10:54 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:54 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:10:54 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:10:54 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:10:54 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:10:54 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:10:54 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.415241 (min) 0.0821013 (max)
13:10:54 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.688747 (min) 1.08458 (max)
13:10:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0.157184 (min) 0.219303 (max)
13:10:54 DEBUG opendrift.models.basemodel.environment:905: x_wind: -0.0697401 (min) 0.459563 (max)
13:10:54 DEBUG opendrift.models.basemodel.environment:905: y_wind: 11.8032 (min) 12.7978 (max)
13:10:54 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -6.6056e-06 (min) -5.30658e-06 (max)
13:10:54 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:10:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:10:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:10:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:10:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:10:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:10:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:10:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:10:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:10:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:10:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:10:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:10:54 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:10:54 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:10:54 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:10:54 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:10:54 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:10:54 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 299.366 (min) 303.139 (max)
13:10:54 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:10:54 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:10:54 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.432317, mean: 3.620797, max: 4.029220
13:10:54 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:10:54 DEBUG opendrift.models.physics_methods:1061: min: 10.093070, mean: 10.364195, max: 10.935536
13:10:54 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 10.093070, mean: 10.364195, max: 10.935536
13:10:54 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:10:54 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:54 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:10:54 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:10:54 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.236241 m/s - 0.255960 m/s)
13:10:54 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:10:54 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:10:54 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:10:54 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:10:54 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:10:54 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:54 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:10:54 INFO opendrift.models.basemodel:2038: 2024-11-10 18:00:00 - step 67 of 71 - 1000 active elements (0 deactivated)
13:10:54 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:10:54 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:10:54 DEBUG opendrift.models.basemodel:2057: 61.143848921661686 <- latitude -> 61.40598264748633
13:10:54 DEBUG opendrift.models.basemodel:2062: 3.89492153636468 <- longitude -> 3.996918721436601
13:10:54 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:10:54 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:10:54 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:54 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:10:54 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:54 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:10:54 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:54 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:54 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:10:54 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:10:54 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:10:54 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:10:54 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:54 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:54 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:10:54 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:54 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:10:54 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:54 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:54 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:10:54 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-10 18:00:00 (before)
2024-11-10 19:00:00 (after)
13:10:55 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:10:55 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:10:55 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:10:55 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:10:55 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:10:55 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 53x41x2) for time before (2024-11-10 18:00:00)
13:10:55 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-10 18:00:00) in space (linearNDFast)
13:10:55 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:10:55 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:10:55 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -66.10508900521386 and -66.00309186330176 degrees.
13:10:55 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -66.10508900521386 and -66.00309186330176 degrees.
13:10:55 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:55 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:10:55 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:10:55 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:10:55 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:10:55 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:10:55 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.426519 (min) 0.0932631 (max)
13:10:55 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.573039 (min) 1.07378 (max)
13:10:55 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0.0929332 (min) 0.150699 (max)
13:10:55 DEBUG opendrift.models.basemodel.environment:905: x_wind: -0.643668 (min) 0.240339 (max)
13:10:55 DEBUG opendrift.models.basemodel.environment:905: y_wind: 12.2805 (min) 12.68 (max)
13:10:55 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -3.36449e-05 (min) -3.20631e-05 (max)
13:10:55 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:10:55 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:10:55 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:10:55 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:10:55 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:10:55 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:10:55 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:10:55 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:10:55 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:10:55 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:10:55 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:10:55 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:10:55 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:10:55 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:10:55 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:10:55 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:10:55 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:10:55 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 299.248 (min) 303.5 (max)
13:10:55 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:10:55 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:10:55 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.710181, mean: 3.869730, max: 3.956568
13:10:55 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:10:55 DEBUG opendrift.models.physics_methods:1061: min: 10.493663, mean: 10.716239, max: 10.836497
13:10:55 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 10.493663, mean: 10.716239, max: 10.836497
13:10:55 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:10:55 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:55 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:10:55 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:10:55 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.245618 m/s - 0.253642 m/s)
13:10:55 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:10:55 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:10:55 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:10:55 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:10:55 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:10:55 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:55 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:10:55 INFO opendrift.models.basemodel:2038: 2024-11-10 19:00:00 - step 68 of 71 - 1000 active elements (0 deactivated)
13:10:55 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:10:55 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:10:55 DEBUG opendrift.models.basemodel:2057: 61.17659072499885 <- latitude -> 61.432654489933796
13:10:55 DEBUG opendrift.models.basemodel:2062: 3.8893402818900227 <- longitude -> 3.9675280848739476
13:10:55 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:10:55 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:10:55 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:55 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:10:55 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:55 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:10:55 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:55 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:55 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:10:55 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:10:55 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:10:55 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:10:55 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:55 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:55 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:10:55 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:55 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:10:55 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:55 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:55 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:10:55 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-10 19:00:00 (before)
2024-11-10 20:00:00 (after)
13:10:57 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:10:57 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:10:57 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:10:57 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:10:57 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:10:57 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 54x39x2) for time before (2024-11-10 19:00:00)
13:10:57 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-10 19:00:00) in space (linearNDFast)
13:10:57 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:10:57 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:10:57 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -66.11067025411627 and -66.0324824912777 degrees.
13:10:57 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -66.11067025411627 and -66.0324824912777 degrees.
13:10:57 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:57 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:10:57 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:10:57 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:10:57 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:10:57 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:10:57 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.392647 (min) 0.0853703 (max)
13:10:57 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.49679 (min) 1.06463 (max)
13:10:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.0591382 (min) -0.0124895 (max)
13:10:57 DEBUG opendrift.models.basemodel.environment:905: x_wind: -1.99688 (min) -1.198 (max)
13:10:57 DEBUG opendrift.models.basemodel.environment:905: y_wind: 11.8816 (min) 12.8369 (max)
13:10:57 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -5.75178e-05 (min) -5.3462e-05 (max)
13:10:57 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:10:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:10:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:10:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:10:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:10:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:10:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:10:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:10:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:10:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:10:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:10:57 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:10:57 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:10:57 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:10:57 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:10:57 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:10:57 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:10:57 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 299.195 (min) 304.197 (max)
13:10:57 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:10:57 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:10:57 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.545502, mean: 3.882054, max: 4.092721
13:10:57 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:10:57 DEBUG opendrift.models.physics_methods:1061: min: 10.258137, mean: 10.730489, max: 11.021370
13:10:57 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 10.258137, mean: 10.730489, max: 11.021370
13:10:57 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:10:57 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:57 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:10:57 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:10:57 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.240105 m/s - 0.257970 m/s)
13:10:57 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:10:57 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:10:57 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:10:57 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:10:57 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:10:57 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:57 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:10:57 INFO opendrift.models.basemodel:2038: 2024-11-10 20:00:00 - step 69 of 71 - 1000 active elements (0 deactivated)
13:10:57 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:10:57 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:10:57 DEBUG opendrift.models.basemodel:2057: 61.21097311612387 <- latitude -> 61.45691754650727
13:10:57 DEBUG opendrift.models.basemodel:2062: 3.8834690182326694 <- longitude -> 3.9412654794025768
13:10:57 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:10:57 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:10:57 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:57 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:10:57 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:57 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:10:57 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:57 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:57 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:10:57 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:10:57 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:10:57 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:10:57 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:57 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:57 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:10:57 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:57 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:10:57 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:57 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:57 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:10:57 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-10 20:00:00 (before)
2024-11-10 21:00:00 (after)
13:10:58 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:10:58 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:10:58 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:10:58 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:10:58 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:10:58 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 53x36x2) for time before (2024-11-10 20:00:00)
13:10:58 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-10 20:00:00) in space (linearNDFast)
13:10:58 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:10:58 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:10:58 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -66.11654151401632 and -66.05874500756602 degrees.
13:10:58 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -66.11654151401632 and -66.05874500756602 degrees.
13:10:58 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:58 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:10:58 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:10:58 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:10:58 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:10:58 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:10:58 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.290144 (min) 0.0903133 (max)
13:10:58 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.386816 (min) 1.06001 (max)
13:10:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.289553 (min) -0.247172 (max)
13:10:58 DEBUG opendrift.models.basemodel.environment:905: x_wind: -0.508474 (min) 2.20465 (max)
13:10:58 DEBUG opendrift.models.basemodel.environment:905: y_wind: 10.2671 (min) 11.2545 (max)
13:10:58 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -6.93007e-05 (min) -6.70897e-05 (max)
13:10:58 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:10:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:10:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:10:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:10:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:10:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:10:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:10:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:10:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:10:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:10:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:10:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:10:58 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:10:58 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:10:58 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:10:58 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:10:58 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:10:58 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 299.464 (min) 304.976 (max)
13:10:58 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:10:58 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:10:58 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.599834, mean: 3.067285, max: 3.148802
13:10:58 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:10:58 DEBUG opendrift.models.physics_methods:1061: min: 8.784204, mean: 9.540338, max: 9.667234
13:10:58 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.784204, mean: 9.540338, max: 9.667234
13:10:58 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:10:58 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:58 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:10:58 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:10:58 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.205606 m/s - 0.226274 m/s)
13:10:58 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:10:58 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:10:58 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:10:58 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:10:58 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:10:58 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:58 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:10:58 INFO opendrift.models.basemodel:2038: 2024-11-10 21:00:00 - step 70 of 71 - 1000 active elements (0 deactivated)
13:10:58 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:10:58 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:10:58 DEBUG opendrift.models.basemodel:2057: 61.245211133324474 <- latitude -> 61.47627444779532
13:10:58 DEBUG opendrift.models.basemodel:2062: 3.883286381920165 <- longitude -> 3.9502803397591117
13:10:58 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:10:58 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:10:58 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:58 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:10:58 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:58 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:10:58 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:58 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:58 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:10:58 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:10:58 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:10:58 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:10:58 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:58 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:58 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:10:58 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:58 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:10:58 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:58 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:58 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:10:58 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-10 21:00:00 (before)
2024-11-10 22:00:00 (after)
13:10:59 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:10:59 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:10:59 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:10:59 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:10:59 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:10:59 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 52x34x2) for time before (2024-11-10 21:00:00)
13:10:59 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-10 21:00:00) in space (linearNDFast)
13:10:59 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:10:59 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:10:59 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -66.11672415345534 and -66.04973014393494 degrees.
13:10:59 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -66.11672415345534 and -66.04973014393494 degrees.
13:10:59 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:59 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:10:59 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:10:59 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:10:59 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:10:59 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:10:59 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.201875 (min) 0.110042 (max)
13:10:59 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.29971 (min) 1.06107 (max)
13:10:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.528553 (min) -0.49081 (max)
13:10:59 DEBUG opendrift.models.basemodel.environment:905: x_wind: 1.43081 (min) 2.79309 (max)
13:10:59 DEBUG opendrift.models.basemodel.environment:905: y_wind: 9.91008 (min) 10.8225 (max)
13:10:59 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -6.33263e-05 (min) -6.05705e-05 (max)
13:10:59 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:10:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:10:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:10:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:10:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:10:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:10:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:10:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:10:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:10:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:10:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:10:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:10:59 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:10:59 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:10:59 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:10:59 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:10:59 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:10:59 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 297.665 (min) 305.351 (max)
13:10:59 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:10:59 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:10:59 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.607870, mean: 2.853599, max: 2.945029
13:10:59 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:10:59 DEBUG opendrift.models.physics_methods:1061: min: 8.797769, mean: 9.202477, max: 9.349199
13:10:59 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.797769, mean: 9.202477, max: 9.349199
13:10:59 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:10:59 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:59 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:10:59 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:10:59 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.205923 m/s - 0.218830 m/s)
13:10:59 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:10:59 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:10:59 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:10:59 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:10:59 DEBUG opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
13:10:59 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:10:59 DEBUG opendrift.models.basemodel:2037: ======================================================================
13:10:59 INFO opendrift.models.basemodel:2038: 2024-11-10 22:00:00 - step 71 of 71 - 1000 active elements (0 deactivated)
13:10:59 DEBUG opendrift.models.basemodel:2044: 0 elements scheduled.
13:10:59 DEBUG opendrift.models.basemodel:2046: ======================================================================
13:10:59 DEBUG opendrift.models.basemodel:2057: 61.28132544997358 <- latitude -> 61.49295661129739
13:10:59 DEBUG opendrift.models.basemodel:2062: 3.8889912841576564 <- longitude -> 3.9577449114509413
13:10:59 DEBUG opendrift.models.basemodel:2065: z = 0.0
13:10:59 DEBUG opendrift.models.basemodel:2068: ---------------------------------
13:10:59 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:59 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:10:59 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:59 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:10:59 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:59 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:59 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:10:59 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:10:59 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:10:59 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:10:59 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:10:59 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:10:59 DEBUG opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
13:10:59 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:10:59 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:10:59 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:10:59 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:10:59 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
13:10:59 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-11-10 22:00:00 (before)
2024-11-10 23:00:00 (after)
13:11:00 DEBUG opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
13:11:00 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
13:11:00 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
13:11:00 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
13:11:00 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
13:11:00 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 50x31x2) for time before (2024-11-10 22:00:00)
13:11:00 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-11-10 22:00:00) in space (linearNDFast)
13:11:00 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:11:00 DEBUG opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
13:11:00 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -66.11101924278174 and -66.042265559302 degrees.
13:11:00 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between -66.11101924278174 and -66.042265559302 degrees.
13:11:00 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:11:00 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:11:00 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:11:00 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
13:11:00 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0 for ocean_vertical_diffusivity for all profiles
13:11:00 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:11:00 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.102808 (min) 0.144341 (max)
13:11:00 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: 0.273931 (min) 1.05558 (max)
13:11:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: -0.701104 (min) -0.673451 (max)
13:11:00 DEBUG opendrift.models.basemodel.environment:905: x_wind: 2.72903 (min) 3.29009 (max)
13:11:00 DEBUG opendrift.models.basemodel.environment:905: y_wind: 9.45421 (min) 10.1825 (max)
13:11:00 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: -3.49348e-05 (min) -3.25032e-05 (max)
13:11:00 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0 (min) 0 (max)
13:11:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:11:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:11:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:11:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:11:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:11:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
13:11:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
13:11:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
13:11:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
13:11:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
13:11:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
13:11:00 DEBUG opendrift.models.basemodel.environment:905: surface_downward_x_stress: 0 (min) 0 (max)
13:11:00 DEBUG opendrift.models.basemodel.environment:905: surface_downward_y_stress: 0 (min) 0 (max)
13:11:00 DEBUG opendrift.models.basemodel.environment:905: turbulent_kinetic_energy: 0 (min) 0 (max)
13:11:00 DEBUG opendrift.models.basemodel.environment:905: turbulent_generic_length_scale: 0 (min) 0 (max)
13:11:00 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:11:00 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 295.479 (min) 305.308 (max)
13:11:00 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:11:00 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:11:00 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.462561, mean: 2.653821, max: 2.741600
13:11:00 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
13:11:00 DEBUG opendrift.models.physics_methods:1061: min: 8.549152, mean: 8.874712, max: 9.020521
13:11:00 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.549152, mean: 8.874712, max: 9.020521
13:11:00 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:11:00 DEBUG opendrift.models.basemodel:750: No elements hit seafloor.
13:11:00 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:11:00 DEBUG opendrift.models.basemodel:2109: Calling OceanDrift.update()
13:11:00 DEBUG opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.200104 m/s - 0.211137 m/s)
13:11:00 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
13:11:00 DEBUG opendrift.models.oceandrift:410: No vertical advection for elements at surface
13:11:00 DEBUG opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
13:11:00 DEBUG opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
13:11:00 DEBUG opendrift.models.basemodel:2153: Cleaning up
13:11:00 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
13:11:00 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
13:11:00 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
13:11:00 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
13:11:00 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
13:11:00 DEBUG opendrift.models.basemodel.environment:630: Data needed for 1000 elements
13:11:00 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
13:11:00 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:11:00 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
13:11:00 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
13:11:00 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
13:11:00 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
13:11:00 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
13:11:00 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
13:11:00 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
13:11:00 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
13:11:00 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
13:11:00 DEBUG opendrift.models.basemodel:1710: No elements to deactivate
13:11:00 DEBUG opendrift.models.basemodel:95: Changed mode from Mode.Run to Mode.Result
13:11:00 DEBUG opendrift.models.basemodel:2365: Setting up map: corners=None, fast=False, lscale=None
13:11:01 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/opt/conda/envs/opendrift/lib/python3.11/site-packages/cartopy/mpl/geoaxes.py:1692: UserWarning: No data for colormapping provided via 'c'. Parameters 'cmap' will be ignored
result = super().scatter(*args, **kwargs)
13:11:26 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:11:27 DEBUG opendrift.models.basemodel:3044: Saving animation..
13:11:27 INFO opendrift.models.basemodel:4613: Saving animation to /root/project/docs/source/gallery/animations/example_manual_aggregate_0.gif...
13:11:28 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:11:29 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:11:31 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:11:32 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:11:34 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:11:35 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:11:37 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:11:38 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:11:40 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:11:41 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:11:43 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:11:44 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:11:46 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:11:47 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:11:49 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:11:50 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:11:52 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:11:53 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:11:55 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:11:56 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:11:58 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:12:00 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:12:01 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:12:03 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:12:04 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:12:05 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:12:07 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:12:08 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:12:10 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:12:11 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:12:13 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:12:14 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:12:15 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:12:17 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:12:18 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:12:20 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:12:21 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:12:22 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:12:24 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:12:25 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:12:27 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:12:28 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:12:29 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:12:31 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:12:32 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:12:34 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:12:35 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:12:37 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:12:38 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:12:40 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:12:41 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:12:43 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:12:44 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:12:46 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:12:47 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:12:48 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:12:50 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:12:51 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:12:53 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:12:54 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:12:56 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:12:57 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:12:59 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:13:00 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:13:02 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:13:04 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:13:05 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:13:07 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:13:08 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:13:10 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:13:11 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:13:13 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:13:14 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:13:16 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:13:17 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:13:19 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:13:20 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:13:22 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:13:23 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:13:25 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:13:26 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:13:28 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:13:29 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:13:31 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:13:33 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:13:34 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:13:36 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:13:37 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:13:39 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:13:40 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:13:42 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:13:43 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:13:45 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:13:46 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:13:48 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:13:49 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:13:50 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:13:52 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:13:53 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:13:55 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:13:56 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:13:58 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:13:59 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:14:01 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:14:02 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:14:04 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:14:05 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:14:07 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:14:08 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:14:09 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:14:11 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:14:12 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:14:14 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:14:15 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:14:17 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:14:18 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:14:20 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:14:21 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:14:23 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:14:24 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:14:26 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:14:27 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:14:28 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:14:30 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:14:31 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:14:33 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:14:35 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:14:36 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:14:38 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:14:39 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:14:41 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:14:42 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:14:44 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:14:45 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:14:47 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:14:48 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:14:50 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:14:52 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:14:53 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:14:55 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:14:57 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:14:58 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
/root/project/opendrift/models/basemodel/__init__.py:4649: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
writer.grab_frame()
13:15:00 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:15:01 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.4832864761352544, 5.0108450889587415, 59.797310638427724, 61.70819396972657)..
13:15:04 DEBUG opendrift.models.basemodel:4651: MPLBACKEND = agg
13:15:04 DEBUG opendrift.models.basemodel:4652: DISPLAY = None
13:15:04 DEBUG opendrift.models.basemodel:4653: Time to save animation: 0:03:36.232181
13:15:04 INFO opendrift.models.basemodel:3037: Time to make animation: 0:04:03.517135
Total running time of the script: (24 minutes 18.855 seconds)