.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "gallery/example_double_gyre_LCS.py" .. LINE NUMBERS ARE GIVEN BELOW. .. only:: html .. note:: :class: sphx-glr-download-link-note :ref:`Go to the end ` to download the full example code .. rst-class:: sphx-glr-example-title .. _sphx_glr_gallery_example_double_gyre_LCS.py: Double gyre - Lagrangian Coherent Structures ============================================ Calculating attracting and repelling LCS for an idealised (analytical) eddy current field. .. GENERATED FROM PYTHON SOURCE LINES 8-18 .. code-block:: Python from datetime import datetime, timedelta import matplotlib.pyplot as plt from opendrift.readers import reader_double_gyre from opendrift.models.oceandrift import OceanDrift o = OceanDrift(loglevel=20) # Set loglevel to 0 for debug information o.set_config('environment:fallback:land_binary_mask', 0) .. rst-class:: sphx-glr-script-out .. code-block:: none 21:46:11 INFO opendrift.models.basemodel:529: OpenDriftSimulation initialised (version 1.11.1 / v1.11.1-74-g4504ea0) .. GENERATED FROM PYTHON SOURCE LINES 19-20 Note that Runge-Kutta here makes a difference to Euler scheme .. GENERATED FROM PYTHON SOURCE LINES 20-32 .. code-block:: Python o.set_config('drift:advection_scheme', 'runge-kutta4') double_gyre = reader_double_gyre.Reader(epsilon=.25, omega=0.628, A=0.1) print(double_gyre) o.add_reader(double_gyre) lcs = o.calculate_ftle(time=double_gyre.initial_time+timedelta(seconds=3), time_step=timedelta(seconds=.5), duration=timedelta(seconds=15), delta=.02) .. rst-class:: sphx-glr-script-out .. code-block:: none =========================== Reader: double_gyre Projection: +proj=stere +lat_0=0 +lon_0=0 +lat_ts=0 +units=m +a=6.371e+06 +e=0 +no_defs Coverage: [degrees] xmin: 0.000000 xmax: 2.000000 ymin: 0.000000 ymax: 1.000000 Corners (lon, lat): ( 0.00, 0.00) ( 0.00, 0.00) ( 0.00, 0.00) ( 0.00, 0.00) Vertical levels [m]: Not specified Available time range: start: None end: None step: None Variables: x_sea_water_velocity y_sea_water_velocity sea_water_speed - derived from ['x_sea_water_velocity', 'y_sea_water_velocity'] =========================== 21:46:11 INFO opendrift.models.basemodel:4603: No reader provided, using first available: 21:46:11 INFO opendrift.models.basemodel:4605: double_gyre 21:46:11 INFO opendrift.models.basemodel:4639: Calculating LCS for 2000-01-01 00:00:03 21:46:11 DEBUG opendrift.config:161: Adding 15 config items from __init__ 21:46:11 DEBUG opendrift.config:171: Overwriting config item readers:max_number_of_fails 21:46:11 DEBUG opendrift.config:161: Adding 5 config items from __init__ 21:46:12 INFO opendrift.models.basemodel:529: OpenDriftSimulation initialised (version 1.11.1 / v1.11.1-74-g4504ea0) 21:46:12 DEBUG opendrift.config:161: Adding 15 config items from oceandrift 21:46:12 DEBUG opendrift.config:171: Overwriting config item seed:z 21:46:12 DEBUG opendrift.models.basemodel.environment:335: Added reader double_gyre 21:46:12 INFO opendrift.models.basemodel.environment:220: Adding a dynamical landmask with max. priority based on assumed maximum speed of 1.0 m/s. Adding a customised landmask may be faster... 21:46:12 DEBUG opendrift.readers.basereader:176: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated 21:46:17 DEBUG opendrift.models.basemodel.environment:335: Added reader global_landmask 21:46:17 INFO opendrift.models.basemodel.environment:247: Fallback values will be used for the following variables which have no readers: 21:46:17 INFO opendrift.models.basemodel.environment:250: x_wind: 0.000000 21:46:17 INFO opendrift.models.basemodel.environment:250: y_wind: 0.000000 21:46:17 INFO opendrift.models.basemodel.environment:250: upward_sea_water_velocity: 0.000000 21:46:17 INFO opendrift.models.basemodel.environment:250: ocean_vertical_diffusivity: 0.000000 21:46:17 INFO opendrift.models.basemodel.environment:250: sea_surface_wave_significant_height: 0.000000 21:46:17 INFO opendrift.models.basemodel.environment:250: sea_surface_wave_stokes_drift_x_velocity: 0.000000 21:46:17 INFO opendrift.models.basemodel.environment:250: sea_surface_wave_stokes_drift_y_velocity: 0.000000 21:46:17 INFO opendrift.models.basemodel.environment:250: sea_surface_wave_period_at_variance_spectral_density_maximum: 0.000000 21:46:17 INFO opendrift.models.basemodel.environment:250: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0.000000 21:46:17 INFO opendrift.models.basemodel.environment:250: sea_surface_swell_wave_to_direction: 0.000000 21:46:17 INFO opendrift.models.basemodel.environment:250: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0.000000 21:46:17 INFO opendrift.models.basemodel.environment:250: sea_surface_swell_wave_significant_height: 0.000000 21:46:17 INFO opendrift.models.basemodel.environment:250: sea_surface_wind_wave_to_direction: 0.000000 21:46:17 INFO opendrift.models.basemodel.environment:250: sea_surface_wind_wave_mean_period: 0.000000 21:46:17 INFO opendrift.models.basemodel.environment:250: sea_surface_wind_wave_significant_height: 0.000000 21:46:17 INFO opendrift.models.basemodel.environment:250: surface_downward_x_stress: 0.000000 21:46:17 INFO opendrift.models.basemodel.environment:250: surface_downward_y_stress: 0.000000 21:46:17 INFO opendrift.models.basemodel.environment:250: turbulent_kinetic_energy: 0.000000 21:46:17 INFO opendrift.models.basemodel.environment:250: turbulent_generic_length_scale: 0.000000 21:46:17 INFO opendrift.models.basemodel.environment:250: ocean_mixed_layer_thickness: 50.000000 21:46:17 INFO opendrift.models.basemodel.environment:250: sea_floor_depth_below_sea_level: 10000.000000 21:46:17 DEBUG opendrift.models.basemodel:92: Changed mode from Mode.Config to Mode.Ready 21:46:17 DEBUG opendrift.models.basemodel:92: Changed mode from Mode.Ready to Mode.Run 21:46:17 DEBUG opendrift.models.basemodel:1735: ------------------------------------------------------ Software and hardware: OpenDrift version 1.11.1 Platform: Linux, 5.15.0-1053-aws 68.56775283813477 GB memory 36 processors (x86_64) NumPy version 1.26.4 SciPy version 1.12.0 Matplotlib version 3.8.3 NetCDF4 version 1.6.1 Xarray version 2024.2.0 Python version 3.11.6 | packaged by conda-forge | (main, Oct 3 2023, 10:40:35) [GCC 12.3.0] ------------------------------------------------------ 21:46:17 DEBUG opendrift.models.basemodel:1749: No output file is specified, neglecting export_buffer_length 21:46:17 DEBUG opendrift.models.basemodel:1867: Finalizing environment and preparing readers for simulation coverage ([-0.00013513513513513514, -0.00013513513513513514, 0.00015294170261964806, 0.0001439484871317856]) and time (2000-01-01 00:00:03 to 2000-01-01 00:00:18) 21:46:17 DEBUG opendrift.models.basemodel.environment:182: Preparing double_gyre for extent [-0.00013513513513513514, -0.00013513513513513514, 0.00015294170261964806, 0.0001439484871317856] 21:46:17 DEBUG opendrift.readers.basereader:188: Nothing more to prepare for double_gyre 21:46:17 DEBUG opendrift.models.basemodel.environment:182: Preparing global_landmask for extent [-0.00013513513513513514, -0.00013513513513513514, 0.00015294170261964806, 0.0001439484871317856] 21:46:17 DEBUG opendrift.readers.basereader:188: Nothing more to prepare for global_landmask 21:46:17 INFO opendrift.models.basemodel:892: Using existing reader for land_binary_mask 21:46:17 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:17 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:17 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:17 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:17 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:17 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:17 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:17 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:17 INFO opendrift.models.basemodel:904: All points are in ocean 21:46:17 DEBUG opendrift.models.basemodel:847: to be seeded: 5000, already seeded 0 21:46:17 DEBUG opendrift.models.basemodel:865: Released 5000 new elements. 21:46:17 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:17 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:03 - step 1 of 30 - 5000 active elements (0 deactivated) 21:46:17 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:17 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:17 DEBUG opendrift.models.basemodel:2014: 0.0 <- latitude -> 8.813352e-06 21:46:17 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.7806567e-05 21:46:17 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:17 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:17 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:17 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:17 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:17 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.414345797626471e-12 degrees. 21:46:17 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:17 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:17 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:17 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:17 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:17 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:17 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:17 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:17 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:17 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:17 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314158 (min) 0.314159 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.350469 (min) 0.458643 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:17 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:17 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:17 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:17 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:17 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:17 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:17 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:17 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:17 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:17 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:17 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:17 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.392614532653249e-12 degrees. 21:46:17 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:17 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:17 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314159 (min) 0.314157 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.346155 (min) 0.450036 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:17 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:17 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:17 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:17 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:17 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:17 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.37957577366933e-12 degrees. 21:46:17 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:17 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:17 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314156 (min) 0.314095 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.346146 (min) 0.449517 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:17 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:17 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:17 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:17 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.377402647172008e-12 degrees. 21:46:17 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:17 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:17 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314159 (min) 0.314089 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.340801 (min) 0.437039 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:17 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:17 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:17 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:17 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:17 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:17 DEBUG opendrift.models.basemodel:847: to be seeded: 0, already seeded 5000 21:46:17 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:17 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:03.500000 - step 2 of 30 - 5000 active elements (0 deactivated) 21:46:17 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:17 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:17 DEBUG opendrift.models.basemodel:2014: -1.441519494455604e-19 <- latitude -> 8.909694252569393e-06 21:46:17 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.7903410340847284e-05 21:46:17 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:17 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:17 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:17 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:17 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:17 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.344805749712177e-12 degrees. 21:46:17 DEBUG opendrift.readers.basereader.variables:823: Masking 39 elements outside coverage 21:46:17 DEBUG opendrift.models.basemodel.environment:775: Data missing for 39 elements. 21:46:17 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:17 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:17 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:17 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:17 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:17 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:17 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:17 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for x_sea_water_velocity for 39 elements 21:46:17 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for y_sea_water_velocity for 39 elements 21:46:17 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:17 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:17 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314132 (min) 0.313763 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.340803 (min) 0.438131 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:17 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:17 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:17 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:17 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:17 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:17 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:17 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:17 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:17 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:17 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:17 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:17 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.296996966771111e-12 degrees. 21:46:17 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:17 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:17 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314154 (min) 0.313854 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.33459 (min) 0.423588 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:17 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:17 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:17 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:17 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:17 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:17 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.27526570179791e-12 degrees. 21:46:17 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:17 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:17 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.31415 (min) 0.313927 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.334662 (min) 0.423274 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:17 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:17 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:17 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:17 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.266573195808623e-12 degrees. 21:46:17 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:17 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:17 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.31414 (min) 0.314158 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.328533 (min) 0.404876 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:17 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:17 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:17 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:17 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:17 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:17 DEBUG opendrift.models.basemodel:847: to be seeded: 0, already seeded 5000 21:46:17 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:17 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:04 - step 3 of 30 - 5000 active elements (0 deactivated) 21:46:17 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:17 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:17 DEBUG opendrift.models.basemodel:2014: -1.1796453583450762e-19 <- latitude -> 8.95152418825699e-06 21:46:17 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.7945394210706343e-05 21:46:17 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:17 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:17 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:17 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:17 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:17 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.205725653883635e-12 degrees. 21:46:17 DEBUG opendrift.readers.basereader.variables:823: Masking 40 elements outside coverage 21:46:17 DEBUG opendrift.models.basemodel.environment:775: Data missing for 40 elements. 21:46:17 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:17 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:17 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:17 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:17 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:17 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:17 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:17 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for x_sea_water_velocity for 40 elements 21:46:17 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for y_sea_water_velocity for 40 elements 21:46:17 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:17 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:17 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314155 (min) 0.313938 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.328607 (min) 0.405577 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:17 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:17 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:17 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:17 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:17 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:17 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:17 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:17 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:17 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:17 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:17 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:17 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.173128756424071e-12 degrees. 21:46:17 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:17 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:17 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314077 (min) 0.314151 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.322932 (min) 0.3851 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:17 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:17 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:17 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:17 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:17 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:17 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.140531858964294e-12 degrees. 21:46:17 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:17 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:17 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314094 (min) 0.314045 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.322945 (min) 0.385026 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:17 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:17 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:17 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:17 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.144878111958945e-12 degrees. 21:46:17 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:17 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:17 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314001 (min) 0.314016 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.318236 (min) 0.362457 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:17 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:17 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:17 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:17 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:17 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:17 DEBUG opendrift.models.basemodel:847: to be seeded: 0, already seeded 5000 21:46:17 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:17 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:04.500000 - step 4 of 30 - 5000 active elements (0 deactivated) 21:46:17 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:17 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:17 DEBUG opendrift.models.basemodel:2014: -1.1586856425309731e-19 <- latitude -> 8.970160809895306e-06 21:46:17 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.796418691921609e-05 21:46:17 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:17 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:17 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:17 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:17 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:17 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.181821262413398e-12 degrees. 21:46:17 DEBUG opendrift.readers.basereader.variables:823: Masking 41 elements outside coverage 21:46:17 DEBUG opendrift.models.basemodel.environment:775: Data missing for 41 elements. 21:46:17 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:17 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:17 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:17 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:17 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:17 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:17 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:17 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for x_sea_water_velocity for 41 elements 21:46:17 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for y_sea_water_velocity for 41 elements 21:46:17 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:17 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:17 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314106 (min) 0.313801 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.318282 (min) 0.360797 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:17 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:17 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:17 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:17 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:17 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:17 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:17 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:17 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:17 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:17 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:17 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:17 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.214418159872584e-12 degrees. 21:46:17 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:17 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:17 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.31376 (min) 0.314063 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.315188 (min) 0.337076 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:17 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:17 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:17 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:17 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:17 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:17 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.186167515408112e-12 degrees. 21:46:17 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:17 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:17 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313751 (min) 0.314083 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.315155 (min) 0.337002 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:17 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:17 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:17 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:17 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.188340641905393e-12 degrees. 21:46:17 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:17 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:17 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314007 (min) 0.314104 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.31398 (min) 0.313685 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:17 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:17 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:17 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:17 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:17 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:17 DEBUG opendrift.models.basemodel:847: to be seeded: 0, already seeded 5000 21:46:17 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:17 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:05 - step 5 of 30 - 5000 active elements (0 deactivated) 21:46:17 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:17 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:17 DEBUG opendrift.models.basemodel:2014: -1.1258816521840352e-19 <- latitude -> 8.978844352213248e-06 21:46:17 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.797267166318589e-05 21:46:17 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:17 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:17 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:17 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:17 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:17 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.227456918857135e-12 degrees. 21:46:17 DEBUG opendrift.readers.basereader.variables:823: Masking 43 elements outside coverage 21:46:17 DEBUG opendrift.models.basemodel.environment:775: Data missing for 43 elements. 21:46:17 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:17 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:17 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:17 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:17 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:17 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:17 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:17 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for x_sea_water_velocity for 43 elements 21:46:17 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for y_sea_water_velocity for 43 elements 21:46:17 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:17 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:17 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314007 (min) 0.313979 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.314062 (min) 0.313963 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:17 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:17 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:17 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:17 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:17 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:17 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:17 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:17 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:17 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:17 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:17 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:17 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.25570756332162e-12 degrees. 21:46:17 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:17 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:17 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313118 (min) 0.313761 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.315037 (min) 0.338472 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:17 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:17 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:17 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:17 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:17 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:17 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.236149424846393e-12 degrees. 21:46:17 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:17 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:17 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.31312 (min) 0.31396 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.31507 (min) 0.338363 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:17 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:17 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:17 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:17 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.240495677841065e-12 degrees. 21:46:17 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:17 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:17 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314159 (min) 0.313938 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.318024 (min) 0.362322 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:17 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:17 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:17 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:17 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:17 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:17 DEBUG opendrift.models.basemodel:847: to be seeded: 0, already seeded 5000 21:46:17 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:17 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:05.500000 - step 6 of 30 - 5000 active elements (0 deactivated) 21:46:17 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:17 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:17 DEBUG opendrift.models.basemodel:2014: -1.086250807041318e-19 <- latitude -> 8.983143629789364e-06 21:46:17 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.7976413944786792e-05 21:46:17 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:17 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:17 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:17 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:17 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:17 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.268746322306198e-12 degrees. 21:46:17 DEBUG opendrift.readers.basereader.variables:823: Masking 44 elements outside coverage 21:46:17 DEBUG opendrift.models.basemodel.environment:775: Data missing for 44 elements. 21:46:17 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:17 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:17 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:17 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:17 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:17 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:17 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:17 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for x_sea_water_velocity for 44 elements 21:46:17 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for y_sea_water_velocity for 44 elements 21:46:17 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:17 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:17 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313618 (min) 0.313734 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.318183 (min) 0.360656 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:17 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:17 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:17 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:17 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:17 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:17 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:17 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:17 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:17 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:17 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:17 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:17 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.286131334284747e-12 degrees. 21:46:17 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:17 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:17 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314106 (min) 0.313502 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.322828 (min) 0.38098 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:17 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:17 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:17 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:17 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:17 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:17 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:17 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.277438828295481e-12 degrees. 21:46:17 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:17 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:17 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:17 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314029 (min) 0.314075 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.322721 (min) 0.382426 (max) 21:46:17 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.277438828295481e-12 degrees. 21:46:18 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:18 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313586 (min) 0.312557 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.328567 (min) 0.403378 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:18 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:18 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:18 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:18 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:18 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:18 DEBUG opendrift.models.basemodel:847: to be seeded: 0, already seeded 5000 21:46:18 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:18 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:06 - step 7 of 30 - 5000 active elements (0 deactivated) 21:46:18 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:18 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:18 DEBUG opendrift.models.basemodel:2014: -1.0479644004282828e-19 <- latitude -> 8.98540733199692e-06 21:46:18 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.7978376428816184e-05 21:46:18 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:18 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.294823840273992e-12 degrees. 21:46:18 DEBUG opendrift.readers.basereader.variables:823: Masking 44 elements outside coverage 21:46:18 DEBUG opendrift.models.basemodel.environment:775: Data missing for 44 elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:18 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:18 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for x_sea_water_velocity for 44 elements 21:46:18 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for y_sea_water_velocity for 44 elements 21:46:18 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:18 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313415 (min) 0.314117 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.328426 (min) 0.400112 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:18 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:18 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:18 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:18 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:18 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:18 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:18 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.312208852252559e-12 degrees. 21:46:18 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:18 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313204 (min) 0.313489 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.334736 (min) 0.424171 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:18 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.303516346263283e-12 degrees. 21:46:18 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:18 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313226 (min) 0.313999 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.334746 (min) 0.423409 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.303516346263282e-12 degrees. 21:46:18 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:18 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313238 (min) 0.313563 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.340585 (min) 0.439409 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:18 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:18 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:18 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:18 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:18 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:18 DEBUG opendrift.models.basemodel:847: to be seeded: 0, already seeded 5000 21:46:18 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:18 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:06.500000 - step 8 of 30 - 5000 active elements (0 deactivated) 21:46:18 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:18 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:18 DEBUG opendrift.models.basemodel:2014: -9.90981508405116e-20 <- latitude -> 8.987514244668235e-06 21:46:18 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.7980294998593367e-05 21:46:18 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:18 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.318728231744532e-12 degrees. 21:46:18 DEBUG opendrift.readers.basereader.variables:823: Masking 43 elements outside coverage 21:46:18 DEBUG opendrift.models.basemodel.environment:775: Data missing for 43 elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:18 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:18 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for x_sea_water_velocity for 43 elements 21:46:18 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for y_sea_water_velocity for 43 elements 21:46:18 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:18 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313969 (min) 0.314006 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.340449 (min) 0.426709 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:18 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:18 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:18 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:18 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:18 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:18 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:18 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.329593864231106e-12 degrees. 21:46:18 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:18 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313541 (min) 0.31397 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.346098 (min) 0.453707 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:18 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.32742073773379e-12 degrees. 21:46:18 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:18 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313557 (min) 0.314039 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.34594 (min) 0.45317 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.325247611235824e-12 degrees. 21:46:18 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:18 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313795 (min) 0.314021 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.350283 (min) 0.462642 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:18 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:18 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:18 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:18 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:18 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:18 DEBUG opendrift.models.basemodel:847: to be seeded: 0, already seeded 5000 21:46:18 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:18 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:07 - step 9 of 30 - 5000 active elements (0 deactivated) 21:46:18 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:18 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:18 DEBUG opendrift.models.basemodel:2014: -9.715139325266108e-20 <- latitude -> 8.990613438500472e-06 21:46:18 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.798157139812012e-05 21:46:18 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:18 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.338286370220412e-12 degrees. 21:46:18 DEBUG opendrift.readers.basereader.variables:823: Masking 43 elements outside coverage 21:46:18 DEBUG opendrift.models.basemodel.environment:775: Data missing for 43 elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:18 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:18 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for x_sea_water_velocity for 43 elements 21:46:18 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for y_sea_water_velocity for 43 elements 21:46:18 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:18 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314114 (min) 0.314135 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.350187 (min) 0.458129 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:18 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:18 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:18 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:18 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:18 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:18 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:18 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.346978876209667e-12 degrees. 21:46:18 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:18 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314027 (min) 0.314071 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.353015 (min) 0.464628 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:18 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.342632623215032e-12 degrees. 21:46:18 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:18 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314004 (min) 0.31405 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.352853 (min) 0.463892 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.346978876209671e-12 degrees. 21:46:18 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:18 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314045 (min) 0.314012 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.353863 (min) 0.465744 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:18 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:18 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:18 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:18 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:18 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:18 DEBUG opendrift.models.basemodel:847: to be seeded: 0, already seeded 5000 21:46:18 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:18 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:07.500000 - step 10 of 30 - 5000 active elements (0 deactivated) 21:46:18 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:18 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:18 DEBUG opendrift.models.basemodel:2014: -9.191575639275364e-20 <- latitude -> 8.992061951091704e-06 21:46:18 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.7982507789324276e-05 21:46:18 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:18 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.355671382198932e-12 degrees. 21:46:18 DEBUG opendrift.readers.basereader.variables:823: Masking 44 elements outside coverage 21:46:18 DEBUG opendrift.models.basemodel.environment:775: Data missing for 44 elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:18 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:18 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for x_sea_water_velocity for 44 elements 21:46:18 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for y_sea_water_velocity for 44 elements 21:46:18 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:18 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314027 (min) 0.313823 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.353436 (min) 0.467273 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:18 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:18 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:18 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:18 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:18 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:18 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:18 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.360017635193602e-12 degrees. 21:46:18 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:18 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313979 (min) 0.314005 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.352384 (min) 0.466443 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:18 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.357844508695638e-12 degrees. 21:46:18 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:18 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313941 (min) 0.313972 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.351982 (min) 0.465635 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.357844508696284e-12 degrees. 21:46:18 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:18 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313949 (min) 0.314124 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.349991 (min) 0.460048 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:18 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:18 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:18 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:18 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:18 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:18 DEBUG opendrift.models.basemodel:847: to be seeded: 0, already seeded 5000 21:46:18 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:18 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:08 - step 11 of 30 - 5000 active elements (0 deactivated) 21:46:18 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:18 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:18 DEBUG opendrift.models.basemodel:2014: -9.663740347703022e-20 <- latitude -> 8.992703854388443e-06 21:46:18 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.7983270260358506e-05 21:46:18 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:18 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.368710141182866e-12 degrees. 21:46:18 DEBUG opendrift.readers.basereader.variables:823: Masking 43 elements outside coverage 21:46:18 DEBUG opendrift.models.basemodel.environment:775: Data missing for 43 elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:18 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:18 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for x_sea_water_velocity for 43 elements 21:46:18 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for y_sea_water_velocity for 43 elements 21:46:18 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:18 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313979 (min) 0.313999 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.350366 (min) 0.460565 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:18 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:18 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:18 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:18 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:18 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:18 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:18 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.375229520674806e-12 degrees. 21:46:18 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:18 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313894 (min) 0.313981 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.345996 (min) 0.452087 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:18 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.373056394177486e-12 degrees. 21:46:18 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:18 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313952 (min) 0.313956 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.346088 (min) 0.451586 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.373056394177486e-12 degrees. 21:46:18 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:18 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313869 (min) 0.313773 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.340924 (min) 0.438991 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:18 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:18 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:18 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:18 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:18 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:18 DEBUG opendrift.models.basemodel:847: to be seeded: 0, already seeded 5000 21:46:18 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:18 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:08.500000 - step 12 of 30 - 5000 active elements (0 deactivated) 21:46:18 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:18 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:18 DEBUG opendrift.models.basemodel:2014: -9.497885954781525e-20 <- latitude -> 8.992981724456126e-06 21:46:18 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.7983942852316438e-05 21:46:18 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:18 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.379575773669428e-12 degrees. 21:46:18 DEBUG opendrift.readers.basereader.variables:823: Masking 43 elements outside coverage 21:46:18 DEBUG opendrift.models.basemodel.environment:775: Data missing for 43 elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:18 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:18 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for x_sea_water_velocity for 43 elements 21:46:18 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for y_sea_water_velocity for 43 elements 21:46:18 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:18 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314127 (min) 0.314081 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.340994 (min) 0.440237 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:18 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:18 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:18 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:18 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:18 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:18 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:18 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.383922026664049e-12 degrees. 21:46:18 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:18 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314072 (min) 0.313936 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.334792 (min) 0.424854 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:18 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.381748900166796e-12 degrees. 21:46:18 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:18 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314044 (min) 0.31392 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.334736 (min) 0.424741 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.383922026664114e-12 degrees. 21:46:18 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:18 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314098 (min) 0.314154 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.328612 (min) 0.406178 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:18 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:18 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:18 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:18 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:18 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:18 DEBUG opendrift.models.basemodel:847: to be seeded: 0, already seeded 5000 21:46:18 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:18 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:09 - step 13 of 30 - 5000 active elements (0 deactivated) 21:46:18 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:18 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:18 DEBUG opendrift.models.basemodel:2014: -9.072003369942403e-20 <- latitude -> 8.993102681564106e-06 21:46:18 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.7984553771035615e-05 21:46:18 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:18 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.399133912145332e-12 degrees. 21:46:18 DEBUG opendrift.readers.basereader.variables:823: Masking 43 elements outside coverage 21:46:18 DEBUG opendrift.models.basemodel.environment:775: Data missing for 43 elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:18 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:18 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for x_sea_water_velocity for 43 elements 21:46:18 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for y_sea_water_velocity for 43 elements 21:46:18 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:18 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314053 (min) 0.313892 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.328552 (min) 0.406249 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:18 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:18 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:18 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:18 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:18 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:18 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:18 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.407826418134586e-12 degrees. 21:46:18 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:18 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313754 (min) 0.313998 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.322948 (min) 0.385188 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:18 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.401307038642629e-12 degrees. 21:46:18 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:18 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.31363 (min) 0.313998 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.322979 (min) 0.385163 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.401307038642626e-12 degrees. 21:46:18 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:18 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314042 (min) 0.314058 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.318255 (min) 0.36258 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:18 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:18 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:18 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:18 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:18 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:18 DEBUG opendrift.models.basemodel:847: to be seeded: 0, already seeded 5000 21:46:18 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:18 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:09.500000 - step 14 of 30 - 5000 active elements (0 deactivated) 21:46:18 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:18 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:18 DEBUG opendrift.models.basemodel:2014: -8.442856485553998e-20 <- latitude -> 8.993156950429297e-06 21:46:18 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.7985095009233152e-05 21:46:18 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:18 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.407826418134567e-12 degrees. 21:46:18 DEBUG opendrift.readers.basereader.variables:823: Masking 43 elements outside coverage 21:46:18 DEBUG opendrift.models.basemodel.environment:775: Data missing for 43 elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:18 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:18 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for x_sea_water_velocity for 43 elements 21:46:18 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for y_sea_water_velocity for 43 elements 21:46:18 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:18 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314133 (min) 0.314003 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.318312 (min) 0.36185 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:18 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:18 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:18 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:18 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:18 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:18 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:18 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.412172671129187e-12 degrees. 21:46:18 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:18 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313876 (min) 0.314065 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.315229 (min) 0.338573 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:18 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.405653291637314e-12 degrees. 21:46:18 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:18 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313949 (min) 0.314054 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.315255 (min) 0.338456 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.409999544631869e-12 degrees. 21:46:18 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:18 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314002 (min) 0.314104 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.313849 (min) 0.314307 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:18 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:18 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:18 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:18 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:18 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:18 DEBUG opendrift.models.basemodel:847: to be seeded: 0, already seeded 5000 21:46:18 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:18 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:10 - step 15 of 30 - 5000 active elements (0 deactivated) 21:46:18 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:18 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:18 DEBUG opendrift.models.basemodel:2014: -7.497429185899128e-20 <- latitude -> 8.993182506422383e-06 21:46:18 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.7985543953460072e-05 21:46:18 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:18 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.42521143011316e-12 degrees. 21:46:18 DEBUG opendrift.readers.basereader.variables:823: Masking 43 elements outside coverage 21:46:18 DEBUG opendrift.models.basemodel.environment:775: Data missing for 43 elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:18 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:18 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for x_sea_water_velocity for 43 elements 21:46:18 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for y_sea_water_velocity for 43 elements 21:46:18 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:18 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313962 (min) 0.314114 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.314033 (min) 0.314583 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:18 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:18 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:18 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:18 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:18 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:18 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:18 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.446942695086339e-12 degrees. 21:46:18 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:18 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314082 (min) 0.314094 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.315161 (min) 0.337833 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:18 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.433903936102422e-12 degrees. 21:46:18 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:18 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314048 (min) 0.314084 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.315136 (min) 0.337946 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.438250189097058e-12 degrees. 21:46:18 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:18 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314022 (min) 0.314107 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.318138 (min) 0.361718 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:18 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:18 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:18 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:18 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:18 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:18 DEBUG opendrift.models.basemodel:847: to be seeded: 0, already seeded 5000 21:46:18 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:18 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:10.500000 - step 16 of 30 - 5000 active elements (0 deactivated) 21:46:18 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:18 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:18 DEBUG opendrift.models.basemodel:2014: -6.131774047509553e-20 <- latitude -> 8.993195284766783e-06 21:46:18 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.798588421512206e-05 21:46:18 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:18 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.446942695086313e-12 degrees. 21:46:18 DEBUG opendrift.readers.basereader.variables:823: Masking 43 elements outside coverage 21:46:18 DEBUG opendrift.models.basemodel.environment:775: Data missing for 43 elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:18 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:18 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for x_sea_water_velocity for 43 elements 21:46:18 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for y_sea_water_velocity for 43 elements 21:46:18 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:18 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314053 (min) 0.314044 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.317149 (min) 0.361494 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:18 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:18 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:18 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:18 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:18 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:18 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:18 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.449115821583615e-12 degrees. 21:46:18 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:18 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314041 (min) 0.314137 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.322779 (min) 0.383789 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:18 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.4469426950863e-12 degrees. 21:46:18 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:18 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314125 (min) 0.314136 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.322758 (min) 0.383677 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.444769568588975e-12 degrees. 21:46:18 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:18 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314083 (min) 0.314091 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.328033 (min) 0.40447 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:18 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:18 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:18 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:18 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:18 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:18 DEBUG opendrift.models.basemodel:847: to be seeded: 0, already seeded 5000 21:46:18 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:18 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:11 - step 17 of 30 - 5000 active elements (0 deactivated) 21:46:18 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:18 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:18 DEBUG opendrift.models.basemodel:2014: -4.4739941582207255e-20 <- latitude -> 8.993202117581776e-06 21:46:18 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.7986117453245687e-05 21:46:18 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:18 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.442596442091636e-12 degrees. 21:46:18 DEBUG opendrift.readers.basereader.variables:823: Masking 43 elements outside coverage 21:46:18 DEBUG opendrift.models.basemodel.environment:775: Data missing for 43 elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:18 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:18 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for x_sea_water_velocity for 43 elements 21:46:18 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for y_sea_water_velocity for 43 elements 21:46:18 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:18 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314086 (min) 0.313921 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.328441 (min) 0.404069 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:18 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:18 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:18 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:18 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:18 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:18 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:18 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.433903936102338e-12 degrees. 21:46:18 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:18 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314042 (min) 0.314109 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.334492 (min) 0.422308 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:18 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.425211430113063e-12 degrees. 21:46:18 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:18 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313988 (min) 0.3141 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.334284 (min) 0.422379 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.425211430113058e-12 degrees. 21:46:18 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:18 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314132 (min) 0.313959 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.34053 (min) 0.438088 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:18 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:18 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:18 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:18 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:18 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:18 DEBUG opendrift.models.basemodel:847: to be seeded: 0, already seeded 5000 21:46:18 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:18 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:11.500000 - step 18 of 30 - 5000 active elements (0 deactivated) 21:46:18 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:18 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:18 DEBUG opendrift.models.basemodel:2014: -2.9122481940924115e-20 <- latitude -> 8.993206052745697e-06 21:46:18 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.7986262201721652e-05 21:46:18 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:18 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.403480165139842e-12 degrees. 21:46:18 DEBUG opendrift.readers.basereader.variables:823: Masking 43 elements outside coverage 21:46:18 DEBUG opendrift.models.basemodel.environment:775: Data missing for 43 elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:18 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:18 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for x_sea_water_velocity for 43 elements 21:46:18 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for y_sea_water_velocity for 43 elements 21:46:18 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:18 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314136 (min) 0.314102 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.34069 (min) 0.43751 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:18 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:18 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:18 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:18 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:18 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:18 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:18 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.373056394177344e-12 degrees. 21:46:18 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:18 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314133 (min) 0.313996 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.346133 (min) 0.45285 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:18 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.3578445086961e-12 degrees. 21:46:18 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:18 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314154 (min) 0.314006 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.346142 (min) 0.452226 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.351325129204138e-12 degrees. 21:46:18 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:18 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314087 (min) 0.313795 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.350227 (min) 0.461666 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:18 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:18 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:18 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:18 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:18 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:18 DEBUG opendrift.models.basemodel:847: to be seeded: 0, already seeded 5000 21:46:18 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:18 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:12 - step 19 of 30 - 5000 active elements (0 deactivated) 21:46:18 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:18 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:18 DEBUG opendrift.models.basemodel:2014: -1.6966363095871453e-20 <- latitude -> 8.993208522657895e-06 21:46:18 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.7986344375458556e-05 21:46:18 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:18 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.32742073773312e-12 degrees. 21:46:18 DEBUG opendrift.readers.basereader.variables:823: Masking 43 elements outside coverage 21:46:18 DEBUG opendrift.models.basemodel.environment:775: Data missing for 43 elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:18 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:18 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:18 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:18 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:18 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:18 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:18 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:18 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for x_sea_water_velocity for 43 elements 21:46:18 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for y_sea_water_velocity for 43 elements 21:46:18 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:18 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:18 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313319 (min) 0.314039 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.35022 (min) 0.460962 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:18 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:18 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:18 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:18 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:18 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:19 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:19 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:19 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.344805749712345e-12 degrees. 21:46:19 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:19 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314104 (min) 0.313961 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.352865 (min) 0.468527 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:19 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.320901358241794e-12 degrees. 21:46:19 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:19 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314137 (min) 0.313983 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.352928 (min) 0.467982 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.325247611236426e-12 degrees. 21:46:19 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:19 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314156 (min) 0.313946 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.353933 (min) 0.47001 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:19 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:19 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:19 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:19 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:19 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:19 DEBUG opendrift.models.basemodel:847: to be seeded: 0, already seeded 5000 21:46:19 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:19 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:12.500000 - step 20 of 30 - 5000 active elements (0 deactivated) 21:46:19 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:19 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:19 DEBUG opendrift.models.basemodel:2014: -9.112242071412664e-21 <- latitude -> 8.993210238251377e-06 21:46:19 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.7986387811500805e-05 21:46:19 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:19 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.351325129203653e-12 degrees. 21:46:19 DEBUG opendrift.readers.basereader.variables:823: Masking 43 elements outside coverage 21:46:19 DEBUG opendrift.models.basemodel.environment:775: Data missing for 43 elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:19 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:19 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for x_sea_water_velocity for 43 elements 21:46:19 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for y_sea_water_velocity for 43 elements 21:46:19 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:19 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:19 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314131 (min) 0.31379 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.353889 (min) 0.469406 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:19 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:19 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:19 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:19 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:19 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:19 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:19 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.370883267680167e-12 degrees. 21:46:19 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:19 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314137 (min) 0.313968 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.353069 (min) 0.468276 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:19 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.346978876209668e-12 degrees. 21:46:19 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:19 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314143 (min) 0.313916 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.352956 (min) 0.468231 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.35349825570162e-12 degrees. 21:46:19 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:19 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314014 (min) 0.314079 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.350276 (min) 0.462611 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:19 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:19 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:19 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:19 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:19 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:19 DEBUG opendrift.models.basemodel:847: to be seeded: 0, already seeded 5000 21:46:19 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:19 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:13 - step 21 of 30 - 5000 active elements (0 deactivated) 21:46:19 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:19 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:19 DEBUG opendrift.models.basemodel:2014: -4.623690224959088e-21 <- latitude -> 8.993211563149097e-06 21:46:19 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.7986409684019084e-05 21:46:19 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:19 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.375229520674766e-12 degrees. 21:46:19 DEBUG opendrift.readers.basereader.variables:823: Masking 43 elements outside coverage 21:46:19 DEBUG opendrift.models.basemodel.environment:775: Data missing for 43 elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:19 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:19 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for x_sea_water_velocity for 43 elements 21:46:19 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for y_sea_water_velocity for 43 elements 21:46:19 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:19 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:19 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314146 (min) 0.314112 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.350515 (min) 0.46091 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:19 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:19 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:19 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:19 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:19 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:19 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:19 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.392614532653321e-12 degrees. 21:46:19 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:19 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313888 (min) 0.313631 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.346364 (min) 0.451357 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:19 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.373056394177456e-12 degrees. 21:46:19 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:19 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313862 (min) 0.313691 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.346388 (min) 0.450725 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.375229520674772e-12 degrees. 21:46:19 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:19 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314116 (min) 0.314115 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.340578 (min) 0.438243 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:19 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:19 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:19 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:19 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:19 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:19 DEBUG opendrift.models.basemodel:847: to be seeded: 0, already seeded 5000 21:46:19 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:19 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:13.500000 - step 22 of 30 - 5000 active elements (0 deactivated) 21:46:19 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:19 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:19 DEBUG opendrift.models.basemodel:2014: -2.2781274073823822e-21 <- latitude -> 8.99321267284754e-06 21:46:19 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.798642044355423e-05 21:46:19 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:19 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.394787659150659e-12 degrees. 21:46:19 DEBUG opendrift.readers.basereader.variables:823: Masking 43 elements outside coverage 21:46:19 DEBUG opendrift.models.basemodel.environment:775: Data missing for 43 elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:19 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:19 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for x_sea_water_velocity for 43 elements 21:46:19 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for y_sea_water_velocity for 43 elements 21:46:19 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:19 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:19 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314016 (min) 0.31402 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.340831 (min) 0.441034 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:19 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:19 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:19 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:19 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:19 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:19 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:19 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.412172671129234e-12 degrees. 21:46:19 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:19 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314016 (min) 0.313971 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.334832 (min) 0.424496 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:19 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.390441406155989e-12 degrees. 21:46:19 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:19 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314003 (min) 0.314034 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.334798 (min) 0.424523 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.390441406156042e-12 degrees. 21:46:19 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:19 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314155 (min) 0.314091 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.328619 (min) 0.405926 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:19 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:19 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:19 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:19 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:19 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:19 DEBUG opendrift.models.basemodel:847: to be seeded: 0, already seeded 5000 21:46:19 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:19 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:14 - step 23 of 30 - 5000 active elements (0 deactivated) 21:46:19 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:19 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:19 DEBUG opendrift.models.basemodel:2014: -1.1245741387133685e-21 <- latitude -> 8.993213629230246e-06 21:46:19 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.7986425740617108e-05 21:46:19 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:19 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.409999544631882e-12 degrees. 21:46:19 DEBUG opendrift.readers.basereader.variables:823: Masking 43 elements outside coverage 21:46:19 DEBUG opendrift.models.basemodel.environment:775: Data missing for 43 elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:19 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:19 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for x_sea_water_velocity for 43 elements 21:46:19 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for y_sea_water_velocity for 43 elements 21:46:19 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:19 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:19 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313929 (min) 0.314111 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.328622 (min) 0.406289 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:19 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:19 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:19 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:19 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:19 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:19 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:19 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.42086517711851e-12 degrees. 21:46:19 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:19 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314007 (min) 0.314066 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.32284 (min) 0.385935 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:19 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.405653291637218e-12 degrees. 21:46:19 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:19 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313993 (min) 0.314017 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.322812 (min) 0.385914 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.4078264181346e-12 degrees. 21:46:19 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:19 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314147 (min) 0.314124 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.318276 (min) 0.363254 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:19 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:19 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:19 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:19 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:19 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:19 DEBUG opendrift.models.basemodel:847: to be seeded: 0, already seeded 5000 21:46:19 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:19 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:14.500000 - step 24 of 30 - 5000 active elements (0 deactivated) 21:46:19 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:19 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:19 DEBUG opendrift.models.basemodel:2014: -5.656928325822103e-22 <- latitude -> 8.993214429682801e-06 21:46:19 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.798642840442337e-05 21:46:19 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:19 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.423038303615803e-12 degrees. 21:46:19 DEBUG opendrift.readers.basereader.variables:823: Masking 43 elements outside coverage 21:46:19 DEBUG opendrift.models.basemodel.environment:775: Data missing for 43 elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:19 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:19 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for x_sea_water_velocity for 43 elements 21:46:19 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for y_sea_water_velocity for 43 elements 21:46:19 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:19 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:19 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314082 (min) 0.314151 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.318364 (min) 0.363334 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:19 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:19 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:19 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:19 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:19 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:19 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:19 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.42955768310774e-12 degrees. 21:46:19 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:19 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314147 (min) 0.313584 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.315011 (min) 0.339207 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:19 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.420865177118466e-12 degrees. 21:46:19 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:19 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314151 (min) 0.313434 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.314959 (min) 0.339147 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.423038303615785e-12 degrees. 21:46:19 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:19 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314079 (min) 0.314127 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.314034 (min) 0.314786 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:19 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:19 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:19 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:19 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:19 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:19 DEBUG opendrift.models.basemodel:847: to be seeded: 0, already seeded 5000 21:46:19 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:19 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:15 - step 25 of 30 - 5000 active elements (0 deactivated) 21:46:19 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:19 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:19 DEBUG opendrift.models.basemodel:2014: -2.950591163328633e-22 <- latitude -> 8.993215051755031e-06 21:46:19 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.798642979367494e-05 21:46:19 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:19 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.427384556610478e-12 degrees. 21:46:19 DEBUG opendrift.readers.basereader.variables:823: Masking 43 elements outside coverage 21:46:19 DEBUG opendrift.models.basemodel.environment:775: Data missing for 43 elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:19 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:19 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for x_sea_water_velocity for 43 elements 21:46:19 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for y_sea_water_velocity for 43 elements 21:46:19 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:19 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:19 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313916 (min) 0.314143 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.313753 (min) 0.314901 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:19 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:19 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:19 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:19 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:19 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:19 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:19 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.438250189097054e-12 degrees. 21:46:19 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:19 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313965 (min) 0.314018 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.315113 (min) 0.337796 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:19 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.433903936102419e-12 degrees. 21:46:19 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:19 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313997 (min) 0.313989 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.315088 (min) 0.337447 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.433903936102417e-12 degrees. 21:46:19 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:19 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313202 (min) 0.314139 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.31806 (min) 0.361359 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:19 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:19 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:19 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:19 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:19 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:19 DEBUG opendrift.models.basemodel:847: to be seeded: 0, already seeded 5000 21:46:19 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:19 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:15.500000 - step 26 of 30 - 5000 active elements (0 deactivated) 21:46:19 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:19 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:19 DEBUG opendrift.models.basemodel:2014: -1.6122035748960736e-22 <- latitude -> 8.993215488573398e-06 21:46:19 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.7986430552729988e-05 21:46:19 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:19 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.440423315594357e-12 degrees. 21:46:19 DEBUG opendrift.readers.basereader.variables:823: Masking 43 elements outside coverage 21:46:19 DEBUG opendrift.models.basemodel.environment:775: Data missing for 43 elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:19 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:19 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for x_sea_water_velocity for 43 elements 21:46:19 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for y_sea_water_velocity for 43 elements 21:46:19 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:19 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:19 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314134 (min) 0.314138 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.317701 (min) 0.361321 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:19 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:19 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:19 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:19 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:19 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:19 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:19 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.444769568588982e-12 degrees. 21:46:19 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:19 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314044 (min) 0.314106 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.322495 (min) 0.384382 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:19 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.442596442091665e-12 degrees. 21:46:19 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:19 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.31404 (min) 0.314079 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.322634 (min) 0.384153 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.442596442091664e-12 degrees. 21:46:19 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:19 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.31381 (min) 0.314156 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.327776 (min) 0.405057 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:19 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:19 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:19 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:19 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:19 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:19 DEBUG opendrift.models.basemodel:847: to be seeded: 0, already seeded 5000 21:46:19 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:19 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:16 - step 27 of 30 - 5000 active elements (0 deactivated) 21:46:19 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:19 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:19 DEBUG opendrift.models.basemodel:2014: -9.298113057454492e-23 <- latitude -> 8.993215762478434e-06 21:46:19 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.798643099049707e-05 21:46:19 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:19 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.44476956858897e-12 degrees. 21:46:19 DEBUG opendrift.readers.basereader.variables:823: Masking 43 elements outside coverage 21:46:19 DEBUG opendrift.models.basemodel.environment:775: Data missing for 43 elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:19 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:19 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for x_sea_water_velocity for 43 elements 21:46:19 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for y_sea_water_velocity for 43 elements 21:46:19 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:19 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:19 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.31397 (min) 0.313941 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.328 (min) 0.405648 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:19 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:19 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:19 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:19 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:19 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:19 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:19 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.440423315594378e-12 degrees. 21:46:19 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:19 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314142 (min) 0.313943 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.334388 (min) 0.424199 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:19 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.438250189097066e-12 degrees. 21:46:19 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:19 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314142 (min) 0.314025 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.334368 (min) 0.424598 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.440423315594385e-12 degrees. 21:46:19 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:19 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314029 (min) 0.313811 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.340109 (min) 0.440691 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:19 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:19 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:19 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:19 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:19 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:19 DEBUG opendrift.models.basemodel:847: to be seeded: 0, already seeded 5000 21:46:19 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:19 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:16.500000 - step 28 of 30 - 5000 active elements (0 deactivated) 21:46:19 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:19 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:19 DEBUG opendrift.models.basemodel:2014: -5.713082536175352e-23 <- latitude -> 8.99321591599436e-06 21:46:19 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.7986431259476542e-05 21:46:19 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:19 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.444769568589006e-12 degrees. 21:46:19 DEBUG opendrift.readers.basereader.variables:823: Masking 43 elements outside coverage 21:46:19 DEBUG opendrift.models.basemodel.environment:775: Data missing for 43 elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:19 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:19 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for x_sea_water_velocity for 43 elements 21:46:19 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for y_sea_water_velocity for 43 elements 21:46:19 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:19 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:19 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314125 (min) 0.314103 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.340603 (min) 0.440454 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:19 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:19 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:19 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:19 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:19 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:19 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:19 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.444769568588992e-12 degrees. 21:46:19 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:19 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314138 (min) 0.313642 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.345868 (min) 0.453469 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:19 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.442596442091673e-12 degrees. 21:46:19 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:19 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314089 (min) 0.313787 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.345914 (min) 0.453153 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.442596442091675e-12 degrees. 21:46:19 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:19 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314149 (min) 0.314049 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.350301 (min) 0.462675 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:19 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:19 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:19 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:19 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:19 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:19 DEBUG opendrift.models.basemodel:847: to be seeded: 0, already seeded 5000 21:46:19 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:19 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:17 - step 29 of 30 - 5000 active elements (0 deactivated) 21:46:19 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:19 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:19 DEBUG opendrift.models.basemodel:2014: -3.797540648017383e-23 <- latitude -> 8.993215993796596e-06 21:46:19 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.7986431438271458e-05 21:46:19 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:19 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.449115821582975e-12 degrees. 21:46:19 DEBUG opendrift.readers.basereader.variables:823: Masking 43 elements outside coverage 21:46:19 DEBUG opendrift.models.basemodel.environment:775: Data missing for 43 elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:19 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:19 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for x_sea_water_velocity for 43 elements 21:46:19 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for y_sea_water_velocity for 43 elements 21:46:19 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:19 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:19 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314002 (min) 0.314023 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.350174 (min) 0.46282 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:19 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:19 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:19 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:19 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:19 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:19 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:19 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.449115821582965e-12 degrees. 21:46:19 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:19 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.31413 (min) 0.31408 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.353014 (min) 0.465121 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:19 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.444769568588977e-12 degrees. 21:46:19 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:19 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.31414 (min) 0.31405 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.353015 (min) 0.464024 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.4469426950863e-12 degrees. 21:46:19 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:19 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314104 (min) 0.313989 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.35397 (min) 0.46607 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:19 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:19 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:19 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:19 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:19 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:19 DEBUG opendrift.models.basemodel:847: to be seeded: 0, already seeded 5000 21:46:19 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:19 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:17.500000 - step 30 of 30 - 5000 active elements (0 deactivated) 21:46:19 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:19 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:19 DEBUG opendrift.models.basemodel:2014: -2.783136527530609e-23 <- latitude -> 8.993216030186853e-06 21:46:19 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.798643156930866e-05 21:46:19 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:19 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.446942695086352e-12 degrees. 21:46:19 DEBUG opendrift.readers.basereader.variables:823: Masking 43 elements outside coverage 21:46:19 DEBUG opendrift.models.basemodel.environment:775: Data missing for 43 elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:19 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:19 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for x_sea_water_velocity for 43 elements 21:46:19 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for y_sea_water_velocity for 43 elements 21:46:19 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:19 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:19 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313906 (min) 0.314139 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.353993 (min) 0.470762 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:19 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:19 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:19 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:19 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:19 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:19 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:19 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.453462074578304e-12 degrees. 21:46:19 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:19 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314141 (min) 0.314075 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.353097 (min) 0.468441 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:19 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.453462074578304e-12 degrees. 21:46:19 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:19 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314129 (min) 0.314053 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.353128 (min) 0.468401 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.451288948080981e-12 degrees. 21:46:19 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:19 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314004 (min) 0.314064 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.350558 (min) 0.462815 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:19 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:19 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:19 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:19 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:19 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:19 DEBUG opendrift.models.basemodel:2109: Cleaning up 21:46:19 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:19 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:19 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:19 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:19 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:19 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:19 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:19 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:19 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:19 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:19 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:19 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:20 DEBUG opendrift.models.basemodel:92: Changed mode from Mode.Run to Mode.Result 21:46:20 DEBUG opendrift.models.oceandrift:116: No machine learning correction available. 21:46:20 DEBUG opendrift.config:161: Adding 48 config items from environment 21:46:20 DEBUG opendrift.config:161: Adding 5 config items from environment 21:46:20 DEBUG opendrift.config:161: Adding 15 config items from __init__ 21:46:20 DEBUG opendrift.config:171: Overwriting config item readers:max_number_of_fails 21:46:20 DEBUG opendrift.config:161: Adding 5 config items from __init__ 21:46:20 INFO opendrift.models.basemodel:529: OpenDriftSimulation initialised (version 1.11.1 / v1.11.1-74-g4504ea0) 21:46:20 DEBUG opendrift.config:161: Adding 15 config items from oceandrift 21:46:20 DEBUG opendrift.config:171: Overwriting config item seed:z 21:46:20 DEBUG opendrift.models.basemodel.environment:335: Added reader double_gyre 21:46:20 INFO opendrift.models.basemodel.environment:220: Adding a dynamical landmask with max. priority based on assumed maximum speed of 1.0 m/s. Adding a customised landmask may be faster... 21:46:20 DEBUG opendrift.readers.basereader:176: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated 21:46:20 DEBUG opendrift.models.basemodel.environment:335: Added reader global_landmask 21:46:20 INFO opendrift.models.basemodel.environment:247: Fallback values will be used for the following variables which have no readers: 21:46:20 INFO opendrift.models.basemodel.environment:250: x_wind: 0.000000 21:46:20 INFO opendrift.models.basemodel.environment:250: y_wind: 0.000000 21:46:20 INFO opendrift.models.basemodel.environment:250: upward_sea_water_velocity: 0.000000 21:46:20 INFO opendrift.models.basemodel.environment:250: ocean_vertical_diffusivity: 0.000000 21:46:20 INFO opendrift.models.basemodel.environment:250: sea_surface_wave_significant_height: 0.000000 21:46:20 INFO opendrift.models.basemodel.environment:250: sea_surface_wave_stokes_drift_x_velocity: 0.000000 21:46:20 INFO opendrift.models.basemodel.environment:250: sea_surface_wave_stokes_drift_y_velocity: 0.000000 21:46:20 INFO opendrift.models.basemodel.environment:250: sea_surface_wave_period_at_variance_spectral_density_maximum: 0.000000 21:46:20 INFO opendrift.models.basemodel.environment:250: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0.000000 21:46:20 INFO opendrift.models.basemodel.environment:250: sea_surface_swell_wave_to_direction: 0.000000 21:46:20 INFO opendrift.models.basemodel.environment:250: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0.000000 21:46:20 INFO opendrift.models.basemodel.environment:250: sea_surface_swell_wave_significant_height: 0.000000 21:46:20 INFO opendrift.models.basemodel.environment:250: sea_surface_wind_wave_to_direction: 0.000000 21:46:20 INFO opendrift.models.basemodel.environment:250: sea_surface_wind_wave_mean_period: 0.000000 21:46:20 INFO opendrift.models.basemodel.environment:250: sea_surface_wind_wave_significant_height: 0.000000 21:46:20 INFO opendrift.models.basemodel.environment:250: surface_downward_x_stress: 0.000000 21:46:20 INFO opendrift.models.basemodel.environment:250: surface_downward_y_stress: 0.000000 21:46:20 INFO opendrift.models.basemodel.environment:250: turbulent_kinetic_energy: 0.000000 21:46:20 INFO opendrift.models.basemodel.environment:250: turbulent_generic_length_scale: 0.000000 21:46:20 INFO opendrift.models.basemodel.environment:250: ocean_mixed_layer_thickness: 50.000000 21:46:20 INFO opendrift.models.basemodel.environment:250: sea_floor_depth_below_sea_level: 10000.000000 21:46:20 DEBUG opendrift.models.basemodel:92: Changed mode from Mode.Config to Mode.Ready 21:46:20 DEBUG opendrift.models.basemodel:92: Changed mode from Mode.Ready to Mode.Run 21:46:20 DEBUG opendrift.models.basemodel:1735: ------------------------------------------------------ Software and hardware: OpenDrift version 1.11.1 Platform: Linux, 5.15.0-1053-aws 68.56775283813477 GB memory 36 processors (x86_64) NumPy version 1.26.4 SciPy version 1.12.0 Matplotlib version 3.8.3 NetCDF4 version 1.6.1 Xarray version 2024.2.0 Python version 3.11.6 | packaged by conda-forge | (main, Oct 3 2023, 10:40:35) [GCC 12.3.0] ------------------------------------------------------ 21:46:20 DEBUG opendrift.models.basemodel:1749: No output file is specified, neglecting export_buffer_length 21:46:20 INFO opendrift.models.basemodel:1802: Backwards simulation, starting from last seeded element 21:46:20 DEBUG opendrift.models.basemodel:1867: Finalizing environment and preparing readers for simulation coverage ([-0.00013513513513513514, -0.00013513513513513514, 0.00015294170261964806, 0.0001439484871317856]) and time (2000-01-01 00:00:18 to 2000-01-01 00:00:03) 21:46:20 DEBUG opendrift.models.basemodel.environment:182: Preparing double_gyre for extent [-0.00013513513513513514, -0.00013513513513513514, 0.00015294170261964806, 0.0001439484871317856] 21:46:20 DEBUG opendrift.readers.basereader:188: Nothing more to prepare for double_gyre 21:46:20 DEBUG opendrift.models.basemodel.environment:182: Preparing global_landmask for extent [-0.00013513513513513514, -0.00013513513513513514, 0.00015294170261964806, 0.0001439484871317856] 21:46:20 DEBUG opendrift.readers.basereader:188: Nothing more to prepare for global_landmask 21:46:20 INFO opendrift.models.basemodel:1885: Backwards simulation, starting at time of last seeded element 21:46:20 INFO opendrift.models.basemodel:892: Using existing reader for land_binary_mask 21:46:20 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:20 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:20 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:20 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:20 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:20 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:20 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:20 INFO opendrift.models.basemodel:904: All points are in ocean 21:46:20 DEBUG opendrift.models.basemodel:847: to be seeded: 5000, already seeded 0 21:46:20 DEBUG opendrift.models.basemodel:865: Released 5000 new elements. 21:46:20 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:20 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:18 - step 1 of 30 - 5000 active elements (0 deactivated) 21:46:20 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:20 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:20 DEBUG opendrift.models.basemodel:2014: 0.0 <- latitude -> 8.813352e-06 21:46:20 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.7806567e-05 21:46:20 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:20 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:20 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:20 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:20 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.414345797626471e-12 degrees. 21:46:20 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:20 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:20 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:20 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:20 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:20 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:20 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:20 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:20 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:20 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314159 (min) 0.314159 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.350573 (min) 0.463827 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:20 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:20 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:20 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:20 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:20 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:20 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:20 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:20 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:20 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:20 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:20 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.420865177118443e-12 degrees. 21:46:20 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:20 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:20 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314155 (min) 0.314075 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.35296 (min) 0.469166 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:20 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:20 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:20 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:20 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:20 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.420865177118441e-12 degrees. 21:46:20 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:20 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:20 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314136 (min) 0.314055 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.352876 (min) 0.469432 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:20 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:20 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:20 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.420865177118441e-12 degrees. 21:46:20 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:20 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:20 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314112 (min) 0.314112 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.353654 (min) 0.471227 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:20 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:20 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:20 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:20 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:20 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:20 DEBUG opendrift.models.basemodel:847: to be seeded: 0, already seeded 5000 21:46:20 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:20 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:17.500000 - step 2 of 30 - 5000 active elements (0 deactivated) 21:46:20 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:20 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:20 DEBUG opendrift.models.basemodel:2014: -2.090072202147033e-20 <- latitude -> 8.893840465433163e-06 21:46:20 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.7847435878822186e-05 21:46:20 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:20 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:20 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:20 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:20 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.42521143011309e-12 degrees. 21:46:20 DEBUG opendrift.readers.basereader.variables:823: Masking 10 elements outside coverage 21:46:20 DEBUG opendrift.models.basemodel.environment:775: Data missing for 10 elements. 21:46:20 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:20 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:20 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:20 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:20 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:20 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:20 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for x_sea_water_velocity for 10 elements 21:46:20 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for y_sea_water_velocity for 10 elements 21:46:20 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:20 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:20 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313781 (min) 0.314159 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.35384 (min) 0.471129 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:20 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:20 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:20 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:20 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:20 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:20 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:20 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:20 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:20 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:20 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:20 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.43173080960506e-12 degrees. 21:46:20 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:20 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:20 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314044 (min) 0.314031 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.352963 (min) 0.468603 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:20 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:20 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:20 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:20 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:20 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.42955768310774e-12 degrees. 21:46:20 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:20 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:20 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.31391 (min) 0.314079 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.353024 (min) 0.469046 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:20 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:20 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:20 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.429557683107741e-12 degrees. 21:46:20 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:20 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:20 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314082 (min) 0.314156 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.350222 (min) 0.463169 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:20 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:20 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:20 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:20 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:20 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:20 DEBUG opendrift.models.basemodel:847: to be seeded: 0, already seeded 5000 21:46:20 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:20 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:17 - step 3 of 30 - 5000 active elements (0 deactivated) 21:46:20 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:20 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:20 DEBUG opendrift.models.basemodel:2014: -2.1517966259293895e-20 <- latitude -> 8.938117675150684e-06 21:46:20 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.7878996997084053e-05 21:46:20 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:20 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:20 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:20 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:20 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.43390393610239e-12 degrees. 21:46:20 DEBUG opendrift.readers.basereader.variables:823: Masking 16 elements outside coverage 21:46:20 DEBUG opendrift.models.basemodel.environment:775: Data missing for 16 elements. 21:46:20 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:20 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:20 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:20 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:20 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:20 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:20 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for x_sea_water_velocity for 16 elements 21:46:20 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for y_sea_water_velocity for 16 elements 21:46:20 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:20 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:20 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313857 (min) 0.314151 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.350197 (min) 0.462622 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:20 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:20 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:20 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:20 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:20 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:20 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:20 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:20 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:20 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:20 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:20 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.42955768310776e-12 degrees. 21:46:20 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:20 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:20 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313917 (min) 0.314051 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.346103 (min) 0.452798 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:20 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:20 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:20 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:20 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:20 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.425211430113118e-12 degrees. 21:46:20 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:20 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:20 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313959 (min) 0.314005 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.346102 (min) 0.453306 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:20 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:20 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:20 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.42738455661044e-12 degrees. 21:46:20 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:20 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:20 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313876 (min) 0.314151 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.340712 (min) 0.440342 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:20 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:20 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:20 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:20 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:20 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:20 DEBUG opendrift.models.basemodel:847: to be seeded: 0, already seeded 5000 21:46:20 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:20 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:16.500000 - step 4 of 30 - 5000 active elements (0 deactivated) 21:46:20 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:20 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:20 DEBUG opendrift.models.basemodel:2014: -2.571689729359303e-20 <- latitude -> 8.96226730982333e-06 21:46:20 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.7905384007889057e-05 21:46:20 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:20 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:20 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:20 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:20 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.427384556610449e-12 degrees. 21:46:20 DEBUG opendrift.readers.basereader.variables:823: Masking 27 elements outside coverage 21:46:20 DEBUG opendrift.models.basemodel.environment:775: Data missing for 27 elements. 21:46:20 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:20 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:20 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:20 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:20 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:20 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:20 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for x_sea_water_velocity for 27 elements 21:46:20 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for y_sea_water_velocity for 27 elements 21:46:20 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:20 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:20 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313951 (min) 0.314109 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.340399 (min) 0.439758 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:20 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:20 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:20 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:20 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:20 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:20 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:20 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:20 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:20 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:20 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:20 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.425211430113145e-12 degrees. 21:46:20 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:20 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:20 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.31352 (min) 0.314158 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.33455 (min) 0.422695 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:20 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:20 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:20 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:20 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:20 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.42303830361583e-12 degrees. 21:46:20 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:20 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:20 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313587 (min) 0.314155 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.334551 (min) 0.422612 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:20 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:20 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:20 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.418692050621188e-12 degrees. 21:46:20 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:20 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:20 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.31402 (min) 0.314022 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.328338 (min) 0.40395 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:20 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:20 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:20 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:20 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:20 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:20 DEBUG opendrift.models.basemodel:847: to be seeded: 0, already seeded 5000 21:46:20 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:20 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:16 - step 5 of 30 - 5000 active elements (0 deactivated) 21:46:20 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:20 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:20 DEBUG opendrift.models.basemodel:2014: -3.134147034286065e-20 <- latitude -> 8.974969838054986e-06 21:46:20 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.7928039231723076e-05 21:46:20 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:20 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:20 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:20 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:20 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.414345797626565e-12 degrees. 21:46:20 DEBUG opendrift.readers.basereader.variables:823: Masking 43 elements outside coverage 21:46:20 DEBUG opendrift.models.basemodel.environment:775: Data missing for 43 elements. 21:46:20 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:20 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:20 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:20 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:20 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:20 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:20 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for x_sea_water_velocity for 43 elements 21:46:20 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for y_sea_water_velocity for 43 elements 21:46:20 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:20 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:20 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313406 (min) 0.313703 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.328258 (min) 0.405828 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:20 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:20 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:20 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:20 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:20 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:20 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:20 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:20 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:20 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:20 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:20 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.403480165139333e-12 degrees. 21:46:20 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:20 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:20 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313677 (min) 0.314148 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.322732 (min) 0.382882 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:20 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:20 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:20 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:20 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:20 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.401307038642666e-12 degrees. 21:46:20 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:20 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:20 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313667 (min) 0.314128 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.322735 (min) 0.382659 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:20 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:20 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:20 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.401307038642671e-12 degrees. 21:46:20 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:20 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:20 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313841 (min) 0.314153 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.317975 (min) 0.360382 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:20 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:20 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:20 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:20 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:20 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:20 DEBUG opendrift.models.basemodel:847: to be seeded: 0, already seeded 5000 21:46:20 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:20 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:15.500000 - step 6 of 30 - 5000 active elements (0 deactivated) 21:46:20 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:20 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:20 DEBUG opendrift.models.basemodel:2014: -3.747215477008149e-20 <- latitude -> 8.982309423924506e-06 21:46:20 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.7946867191271436e-05 21:46:20 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:20 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:20 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:20 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:20 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.383922026664128e-12 degrees. 21:46:20 DEBUG opendrift.readers.basereader.variables:823: Masking 61 elements outside coverage 21:46:20 DEBUG opendrift.models.basemodel.environment:775: Data missing for 61 elements. 21:46:20 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:20 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:20 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:20 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:20 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:20 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:20 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for x_sea_water_velocity for 61 elements 21:46:20 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for y_sea_water_velocity for 61 elements 21:46:20 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:20 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:20 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314057 (min) 0.313866 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.318044 (min) 0.360104 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:20 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:20 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:20 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:20 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:20 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:20 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:20 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:20 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:20 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:20 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:20 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.362190761690959e-12 degrees. 21:46:20 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:20 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:20 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314053 (min) 0.313248 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.315079 (min) 0.337749 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:20 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:20 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:20 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:20 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:20 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.357844508696331e-12 degrees. 21:46:20 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:20 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:20 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314038 (min) 0.313423 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.315131 (min) 0.337764 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:20 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:20 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:20 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.353498255701693e-12 degrees. 21:46:20 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:20 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:20 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314023 (min) 0.314062 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.313951 (min) 0.314379 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:20 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:20 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:20 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:20 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:20 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:20 DEBUG opendrift.models.basemodel:847: to be seeded: 0, already seeded 5000 21:46:20 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:20 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:15 - step 7 of 30 - 5000 active elements (0 deactivated) 21:46:20 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:20 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:20 DEBUG opendrift.models.basemodel:2014: -4.5347359933172146e-20 <- latitude -> 8.985723445754857e-06 21:46:20 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.7961269540206953e-05 21:46:20 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:20 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:20 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:20 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:20 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.32524761123657e-12 degrees. 21:46:20 DEBUG opendrift.readers.basereader.variables:823: Masking 75 elements outside coverage 21:46:20 DEBUG opendrift.models.basemodel.environment:775: Data missing for 75 elements. 21:46:20 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:20 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:20 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:20 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:20 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:20 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:20 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for x_sea_water_velocity for 75 elements 21:46:20 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for y_sea_water_velocity for 75 elements 21:46:20 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:20 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:20 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313839 (min) 0.314079 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.31415 (min) 0.313533 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:20 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:20 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:20 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:20 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:20 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:20 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:20 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:20 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:20 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:20 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:20 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.283958207787545e-12 degrees. 21:46:20 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:20 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:20 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313818 (min) 0.313896 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.314972 (min) 0.337446 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:20 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:20 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:20 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:20 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:20 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.26440006931168e-12 degrees. 21:46:20 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:20 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:20 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313795 (min) 0.314054 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.314973 (min) 0.336644 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:20 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:20 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:20 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.264400069311683e-12 degrees. 21:46:20 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:20 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:20 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314011 (min) 0.314153 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.318327 (min) 0.360287 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:20 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:20 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:20 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:20 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:20 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:20 DEBUG opendrift.models.basemodel:847: to be seeded: 0, already seeded 5000 21:46:20 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:20 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:14.500000 - step 8 of 30 - 5000 active elements (0 deactivated) 21:46:20 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:20 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:20 DEBUG opendrift.models.basemodel:2014: -4.4652878816906343e-20 <- latitude -> 8.988769054499387e-06 21:46:20 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.7970940036438914e-05 21:46:20 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:20 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:20 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:20 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:20 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.210071906878745e-12 degrees. 21:46:20 DEBUG opendrift.readers.basereader.variables:823: Masking 84 elements outside coverage 21:46:20 DEBUG opendrift.models.basemodel.environment:775: Data missing for 84 elements. 21:46:20 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:20 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:20 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:20 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:20 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:20 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:20 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for x_sea_water_velocity for 84 elements 21:46:20 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for y_sea_water_velocity for 84 elements 21:46:20 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:20 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:20 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313823 (min) 0.313212 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.318346 (min) 0.361529 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:20 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:20 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:20 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:20 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:20 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:20 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:20 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:20 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:20 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:20 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:20 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.129666226477996e-12 degrees. 21:46:20 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:20 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:20 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313742 (min) 0.313672 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.323058 (min) 0.385498 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:20 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:20 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:20 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:20 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:20 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.105761835007498e-12 degrees. 21:46:20 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:20 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:20 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313713 (min) 0.313732 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.32301 (min) 0.385877 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:20 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:20 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:20 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.101415582012237e-12 degrees. 21:46:20 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:20 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:20 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313806 (min) 0.313903 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.328549 (min) 0.406771 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:20 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:20 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:20 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:20 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:20 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:20 DEBUG opendrift.models.basemodel:847: to be seeded: 0, already seeded 5000 21:46:20 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:20 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:14 - step 9 of 30 - 5000 active elements (0 deactivated) 21:46:20 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:20 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:20 DEBUG opendrift.models.basemodel:2014: -4.9709563329096624e-20 <- latitude -> 8.990460246724167e-06 21:46:20 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.7976105906836163e-05 21:46:20 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:20 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:20 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:20 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:20 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.160089997440085e-12 degrees. 21:46:20 DEBUG opendrift.readers.basereader.variables:823: Masking 90 elements outside coverage 21:46:20 DEBUG opendrift.models.basemodel.environment:775: Data missing for 90 elements. 21:46:20 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:20 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:20 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:20 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:20 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:20 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:20 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:20 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:20 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for x_sea_water_velocity for 90 elements 21:46:20 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for y_sea_water_velocity for 90 elements 21:46:20 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:20 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:20 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:20 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314146 (min) 0.313965 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.328691 (min) 0.391643 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:20 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:20 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:20 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:20 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:20 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:21 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:21 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:21 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.223110665862346e-12 degrees. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:21 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313928 (min) 0.313962 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.335023 (min) 0.423473 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:21 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.190513768402545e-12 degrees. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:21 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314003 (min) 0.313888 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.334973 (min) 0.42435 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.197033147894473e-12 degrees. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:21 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314092 (min) 0.313954 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.3408 (min) 0.440153 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:21 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:21 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:21 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:21 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:21 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:21 DEBUG opendrift.models.basemodel:847: to be seeded: 0, already seeded 5000 21:46:21 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:21 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:13.500000 - step 10 of 30 - 5000 active elements (0 deactivated) 21:46:21 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:21 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:21 DEBUG opendrift.models.basemodel:2014: -5.2181440147616896e-20 <- latitude -> 8.991232858200793e-06 21:46:21 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.7977120432260743e-05 21:46:21 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:21 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.262226942814092e-12 degrees. 21:46:21 DEBUG opendrift.readers.basereader.variables:823: Masking 93 elements outside coverage 21:46:21 DEBUG opendrift.models.basemodel.environment:775: Data missing for 93 elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:21 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for x_sea_water_velocity for 93 elements 21:46:21 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for y_sea_water_velocity for 93 elements 21:46:21 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:21 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313982 (min) 0.314129 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.340815 (min) 0.435489 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:21 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:21 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:21 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:21 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:21 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:21 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:21 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.310035725755147e-12 degrees. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:21 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314118 (min) 0.314147 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.34617 (min) 0.448781 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:21 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.279611954792662e-12 degrees. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:21 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314079 (min) 0.31412 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.346303 (min) 0.447825 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.28613133428463e-12 degrees. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:21 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314089 (min) 0.314151 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.350417 (min) 0.456639 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:21 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:21 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:21 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:21 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:21 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:21 DEBUG opendrift.models.basemodel:847: to be seeded: 0, already seeded 5000 21:46:21 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:21 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:13 - step 11 of 30 - 5000 active elements (0 deactivated) 21:46:21 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:21 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:21 DEBUG opendrift.models.basemodel:2014: -5.047544604250679e-20 <- latitude -> 8.991406697229629e-06 21:46:21 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.7973491324606636e-05 21:46:21 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:21 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.340459496716987e-12 degrees. 21:46:21 DEBUG opendrift.readers.basereader.variables:823: Masking 95 elements outside coverage 21:46:21 DEBUG opendrift.models.basemodel.environment:775: Data missing for 95 elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:21 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for x_sea_water_velocity for 95 elements 21:46:21 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for y_sea_water_velocity for 95 elements 21:46:21 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:21 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314039 (min) 0.313785 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.350434 (min) 0.458902 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:21 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:21 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:21 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:21 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:21 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:21 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:21 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.377402647172055e-12 degrees. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:21 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314055 (min) 0.313845 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.353039 (min) 0.465816 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:21 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.346978876208928e-12 degrees. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:21 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314035 (min) 0.313896 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.353092 (min) 0.464882 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.357844508696176e-12 degrees. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:21 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314064 (min) 0.313985 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.353981 (min) 0.466621 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:21 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:21 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:21 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:21 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:21 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:21 DEBUG opendrift.models.basemodel:847: to be seeded: 0, already seeded 5000 21:46:21 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:21 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:12.500000 - step 12 of 30 - 5000 active elements (0 deactivated) 21:46:21 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:21 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:21 DEBUG opendrift.models.basemodel:2014: -4.274975372050603e-20 <- latitude -> 8.991200140275654e-06 21:46:21 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.796283973407593e-05 21:46:21 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:21 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.39261453265327e-12 degrees. 21:46:21 DEBUG opendrift.readers.basereader.variables:823: Masking 96 elements outside coverage 21:46:21 DEBUG opendrift.models.basemodel.environment:775: Data missing for 96 elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:21 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for x_sea_water_velocity for 96 elements 21:46:21 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for y_sea_water_velocity for 96 elements 21:46:21 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:21 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314104 (min) 0.314086 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.353768 (min) 0.467692 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:21 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:21 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:21 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:21 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:21 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:21 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:21 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.420865177118454e-12 degrees. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:21 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314024 (min) 0.314042 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.352774 (min) 0.46636 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:21 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.401307038642576e-12 degrees. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:21 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.31403 (min) 0.314019 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.352882 (min) 0.465581 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.405653291637217e-12 degrees. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:21 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313974 (min) 0.314005 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.35033 (min) 0.459843 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:21 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:21 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:21 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:21 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:21 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:21 DEBUG opendrift.models.basemodel:847: to be seeded: 0, already seeded 5000 21:46:21 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:21 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:12 - step 13 of 30 - 5000 active elements (0 deactivated) 21:46:21 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:21 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:21 DEBUG opendrift.models.basemodel:2014: -2.956359269423135e-20 <- latitude -> 8.99072573367425e-06 21:46:21 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.7939887630989356e-05 21:46:21 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:21 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.420865177118483e-12 degrees. 21:46:21 DEBUG opendrift.readers.basereader.variables:823: Masking 96 elements outside coverage 21:46:21 DEBUG opendrift.models.basemodel.environment:775: Data missing for 96 elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:21 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for x_sea_water_velocity for 96 elements 21:46:21 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for y_sea_water_velocity for 96 elements 21:46:21 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:21 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314139 (min) 0.31399 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.350255 (min) 0.461972 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:21 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:21 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:21 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:21 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:21 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:21 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:21 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.44259644209162e-12 degrees. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:21 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.31313 (min) 0.314057 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.345627 (min) 0.452515 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:21 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.425211430113053e-12 degrees. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:21 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313057 (min) 0.314054 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.345607 (min) 0.452165 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.427384556610374e-12 degrees. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:21 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313875 (min) 0.31399 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.340716 (min) 0.439332 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:21 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:21 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:21 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:21 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:21 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:21 DEBUG opendrift.models.basemodel:847: to be seeded: 0, already seeded 5000 21:46:21 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:21 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:11.500000 - step 14 of 30 - 5000 active elements (0 deactivated) 21:46:21 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:21 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:21 DEBUG opendrift.models.basemodel:2014: -1.3638802352448506e-20 <- latitude -> 8.989985099376703e-06 21:46:21 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.7952506623809748e-05 21:46:21 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:21 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.455635201074898e-12 degrees. 21:46:21 DEBUG opendrift.readers.basereader.variables:823: Masking 90 elements outside coverage 21:46:21 DEBUG opendrift.models.basemodel.environment:775: Data missing for 90 elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:21 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for x_sea_water_velocity for 90 elements 21:46:21 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for y_sea_water_velocity for 90 elements 21:46:21 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:21 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314089 (min) 0.313781 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.340542 (min) 0.440082 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:21 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:21 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:21 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:21 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:21 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:21 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:21 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.466500833562165e-12 degrees. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:21 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313555 (min) 0.314068 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.334373 (min) 0.423466 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:21 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.457808327572888e-12 degrees. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:21 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313822 (min) 0.314087 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.334323 (min) 0.423665 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.45998145407021e-12 degrees. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:21 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314104 (min) 0.314089 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.328438 (min) 0.405006 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:21 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:21 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:21 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:21 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:21 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:21 DEBUG opendrift.models.basemodel:847: to be seeded: 0, already seeded 5000 21:46:21 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:21 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:11 - step 15 of 30 - 5000 active elements (0 deactivated) 21:46:21 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:21 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:21 DEBUG opendrift.models.basemodel:2014: 0.0 <- latitude -> 8.99032682892356e-06 21:46:21 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.796476454886605e-05 21:46:21 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:21 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.466500833562185e-12 degrees. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:21 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:21 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314122 (min) 0.314023 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.328488 (min) 0.405078 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:21 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:21 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:21 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:21 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:21 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:21 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:21 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.464327707064883e-12 degrees. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:21 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313937 (min) 0.314157 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.322704 (min) 0.384695 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:21 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.459981454070239e-12 degrees. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:21 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313931 (min) 0.314156 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.322728 (min) 0.384657 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.455635201075603e-12 degrees. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:21 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314145 (min) 0.313804 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.318121 (min) 0.361964 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:21 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:21 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:21 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:21 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:21 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:21 DEBUG opendrift.models.basemodel:847: to be seeded: 0, already seeded 5000 21:46:21 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:21 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:10.500000 - step 16 of 30 - 5000 active elements (0 deactivated) 21:46:21 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:21 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:21 DEBUG opendrift.models.basemodel:2014: 0.0 <- latitude -> 8.991205794247543e-06 21:46:21 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.7972128565414303e-05 21:46:21 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:21 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.451288948080978e-12 degrees. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:21 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:21 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314013 (min) 0.314116 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.318167 (min) 0.360123 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:21 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:21 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:21 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:21 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:21 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:21 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:21 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.442596442091724e-12 degrees. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:21 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313975 (min) 0.314124 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.314877 (min) 0.337299 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:21 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.436077062599765e-12 degrees. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:21 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.31391 (min) 0.314133 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.314805 (min) 0.337331 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.436077062599768e-12 degrees. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:21 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314143 (min) 0.314142 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.314015 (min) 0.314089 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:21 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:21 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:21 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:21 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:21 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:21 DEBUG opendrift.models.basemodel:847: to be seeded: 0, already seeded 5000 21:46:21 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:21 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:10 - step 17 of 30 - 5000 active elements (0 deactivated) 21:46:21 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:21 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:21 DEBUG opendrift.models.basemodel:2014: 0.0 <- latitude -> 8.991757132191448e-06 21:46:21 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.7975619016682497e-05 21:46:21 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:21 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.427384556610395e-12 degrees. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:21 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:21 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314028 (min) 0.314007 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.31354 (min) 0.314056 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:21 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:21 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:21 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:21 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:21 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:21 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:21 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.438250189097013e-12 degrees. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:21 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314079 (min) 0.313921 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.315256 (min) 0.338946 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:21 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.433903936102372e-12 degrees. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:21 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314081 (min) 0.313968 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.315235 (min) 0.338737 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.43390393610237e-12 degrees. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:21 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314074 (min) 0.313905 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.318224 (min) 0.362492 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:21 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:21 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:21 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:21 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:21 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:21 DEBUG opendrift.models.basemodel:847: to be seeded: 0, already seeded 5000 21:46:21 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:21 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:09.500000 - step 18 of 30 - 5000 active elements (0 deactivated) 21:46:21 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:21 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:21 DEBUG opendrift.models.basemodel:2014: 0.0 <- latitude -> 8.99208709772938e-06 21:46:21 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.797602596415402e-05 21:46:21 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:21 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.440423315594346e-12 degrees. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:21 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:21 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314089 (min) 0.31411 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.318234 (min) 0.362031 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:21 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:21 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:21 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:21 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:21 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:21 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:21 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.440423315594359e-12 degrees. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:21 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313885 (min) 0.314107 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.322986 (min) 0.385632 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:21 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.436077062599723e-12 degrees. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:21 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314011 (min) 0.314113 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.322994 (min) 0.385297 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.43607706259972e-12 degrees. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:21 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.31395 (min) 0.314098 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.328679 (min) 0.406186 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:21 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:21 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:21 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:21 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:21 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:21 DEBUG opendrift.models.basemodel:847: to be seeded: 0, already seeded 5000 21:46:21 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:21 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:09 - step 19 of 30 - 5000 active elements (0 deactivated) 21:46:21 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:21 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:21 DEBUG opendrift.models.basemodel:2014: 0.0 <- latitude -> 8.992316979675417e-06 21:46:21 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.797912262217076e-05 21:46:21 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:21 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.438250189097054e-12 degrees. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:21 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:21 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313504 (min) 0.314003 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.328713 (min) 0.404947 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:21 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:21 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:21 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:21 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:21 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:21 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:21 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.431730809605014e-12 degrees. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:21 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314076 (min) 0.313826 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.334919 (min) 0.424771 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:21 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.427384556610468e-12 degrees. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:21 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314072 (min) 0.313843 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.334776 (min) 0.424848 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.429557683107788e-12 degrees. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:21 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314092 (min) 0.313963 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.341011 (min) 0.440692 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:21 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:21 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:21 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:21 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:21 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:21 DEBUG opendrift.models.basemodel:847: to be seeded: 0, already seeded 5000 21:46:21 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:21 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:08.500000 - step 20 of 30 - 5000 active elements (0 deactivated) 21:46:21 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:21 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:21 DEBUG opendrift.models.basemodel:2014: 0.0 <- latitude -> 8.992684714511435e-06 21:46:21 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.7980880546931906e-05 21:46:21 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:21 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.4404233155943e-12 degrees. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:21 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:21 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314036 (min) 0.313696 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.340744 (min) 0.440723 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:21 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:21 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:21 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:21 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:21 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:21 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:21 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.449115821583584e-12 degrees. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:21 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314041 (min) 0.31414 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.346007 (min) 0.453286 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:21 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.449115821583587e-12 degrees. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:21 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314006 (min) 0.314148 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.346141 (min) 0.453836 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.449115821583587e-12 degrees. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:21 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313946 (min) 0.313903 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.350378 (min) 0.463178 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:21 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:21 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:21 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:21 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:21 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:21 DEBUG opendrift.models.basemodel:847: to be seeded: 0, already seeded 5000 21:46:21 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:21 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:08 - step 21 of 30 - 5000 active elements (0 deactivated) 21:46:21 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:21 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:21 DEBUG opendrift.models.basemodel:2014: 0.0 <- latitude -> 8.992898305078084e-06 21:46:21 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.7981907114931895e-05 21:46:21 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:21 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.455635201075553e-12 degrees. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:21 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:21 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313711 (min) 0.314075 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.350312 (min) 0.461957 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:21 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:21 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:21 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:21 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:21 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:21 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:21 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.462154580567515e-12 degrees. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:21 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314069 (min) 0.314034 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.352954 (min) 0.468665 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:21 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.457808327572872e-12 degrees. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:21 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313976 (min) 0.314063 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.353025 (min) 0.469117 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.462154580567516e-12 degrees. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:21 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313932 (min) 0.314002 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.353945 (min) 0.470989 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:21 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:21 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:21 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:21 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:21 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:21 DEBUG opendrift.models.basemodel:847: to be seeded: 0, already seeded 5000 21:46:21 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:21 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:07.500000 - step 22 of 30 - 5000 active elements (0 deactivated) 21:46:21 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:21 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:21 DEBUG opendrift.models.basemodel:2014: 0.0 <- latitude -> 8.993004296707082e-06 21:46:21 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.7982535123275215e-05 21:46:21 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:21 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.462154580567521e-12 degrees. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:21 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:21 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:21 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:21 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:21 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:21 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:21 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:21 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:21 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:21 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313925 (min) 0.31395 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.353965 (min) 0.470186 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:21 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:22 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:22 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:22 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:22 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:22 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:22 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:22 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:22 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:22 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:22 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:22 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.466500833562164e-12 degrees. 21:46:22 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:22 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:22 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313972 (min) 0.314104 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.352889 (min) 0.468307 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:22 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:22 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:22 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:22 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:22 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.466500833562167e-12 degrees. 21:46:22 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:22 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:22 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314028 (min) 0.314032 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.352971 (min) 0.467954 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:22 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:22 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:22 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.464327707064847e-12 degrees. 21:46:22 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:22 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:22 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.31397 (min) 0.314053 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.35039 (min) 0.462186 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:22 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:22 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:22 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:22 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:22 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:22 DEBUG opendrift.models.basemodel:847: to be seeded: 0, already seeded 5000 21:46:22 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:22 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:07 - step 23 of 30 - 5000 active elements (0 deactivated) 21:46:22 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:22 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:22 DEBUG opendrift.models.basemodel:2014: 0.0 <- latitude -> 8.993024981691048e-06 21:46:22 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.7982913421565265e-05 21:46:22 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:22 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:22 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:22 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:22 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.466500833562174e-12 degrees. 21:46:22 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:22 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:22 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:22 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:22 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:22 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:22 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:22 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:22 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:22 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.31411 (min) 0.314137 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.350332 (min) 0.463083 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:22 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:22 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:22 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:22 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:22 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:22 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:22 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:22 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:22 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:22 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:22 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.464327707064859e-12 degrees. 21:46:22 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:22 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:22 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314041 (min) 0.314108 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.345902 (min) 0.452807 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:22 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:22 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:22 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:22 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:22 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.466500833562178e-12 degrees. 21:46:22 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:22 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:22 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314105 (min) 0.314126 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.345847 (min) 0.452539 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:22 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:22 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:22 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.468673960059501e-12 degrees. 21:46:22 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:22 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:22 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314039 (min) 0.314124 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.340649 (min) 0.439695 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:22 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:22 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:22 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:22 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:22 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:22 DEBUG opendrift.models.basemodel:847: to be seeded: 0, already seeded 5000 21:46:22 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:22 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:06.500000 - step 24 of 30 - 5000 active elements (0 deactivated) 21:46:22 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:22 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:22 DEBUG opendrift.models.basemodel:2014: 0.0 <- latitude -> 8.99295697004009e-06 21:46:22 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.798307238676991e-05 21:46:22 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:22 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:22 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:22 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:22 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.466500833562191e-12 degrees. 21:46:22 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:22 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:22 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:22 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:22 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:22 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:22 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:22 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:22 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:22 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314077 (min) 0.314154 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.340824 (min) 0.439787 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:22 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:22 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:22 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:22 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:22 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:22 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:22 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:22 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:22 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:22 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:22 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.462154580567554e-12 degrees. 21:46:22 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:22 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:22 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314042 (min) 0.314138 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.33465 (min) 0.424495 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:22 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:22 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:22 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:22 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:22 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.462154580567555e-12 degrees. 21:46:22 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:22 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:22 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314029 (min) 0.314117 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.33461 (min) 0.424582 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:22 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:22 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:22 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.462154580567555e-12 degrees. 21:46:22 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:22 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:22 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313931 (min) 0.314011 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.328242 (min) 0.40585 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:22 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:22 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:22 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:22 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:22 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:22 DEBUG opendrift.models.basemodel:847: to be seeded: 0, already seeded 5000 21:46:22 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:22 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:06 - step 25 of 30 - 5000 active elements (0 deactivated) 21:46:22 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:22 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:22 DEBUG opendrift.models.basemodel:2014: -6.864504516603663e-21 <- latitude -> 8.992776096886697e-06 21:46:22 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.7982938814516952e-05 21:46:22 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:22 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:22 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:22 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:22 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.466500833562154e-12 degrees. 21:46:22 DEBUG opendrift.readers.basereader.variables:823: Masking 99 elements outside coverage 21:46:22 DEBUG opendrift.models.basemodel.environment:775: Data missing for 99 elements. 21:46:22 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:22 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:22 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:22 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:22 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:22 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:22 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for x_sea_water_velocity for 99 elements 21:46:22 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for y_sea_water_velocity for 99 elements 21:46:22 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:22 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:22 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313979 (min) 0.314139 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.328223 (min) 0.405634 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:22 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:22 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:22 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:22 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:22 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:22 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:22 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:22 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:22 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:22 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:22 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.468673960059482e-12 degrees. 21:46:22 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:22 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:22 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314129 (min) 0.314134 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.322701 (min) 0.385025 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:22 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:22 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:22 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:22 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:22 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.466500833562164e-12 degrees. 21:46:22 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:22 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:22 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314111 (min) 0.314141 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.322704 (min) 0.385009 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:22 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:22 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:22 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.464327707064841e-12 degrees. 21:46:22 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:22 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:22 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314048 (min) 0.313796 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.317485 (min) 0.362293 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:22 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:22 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:22 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:22 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:22 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:22 DEBUG opendrift.models.basemodel:847: to be seeded: 0, already seeded 5000 21:46:22 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:22 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:05.500000 - step 26 of 30 - 5000 active elements (0 deactivated) 21:46:22 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:22 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:22 DEBUG opendrift.models.basemodel:2014: -1.4331926007872574e-20 <- latitude -> 8.992447235399371e-06 21:46:22 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.7982313365189044e-05 21:46:22 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:22 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:22 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:22 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:22 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.47302021305413e-12 degrees. 21:46:22 DEBUG opendrift.readers.basereader.variables:823: Masking 99 elements outside coverage 21:46:22 DEBUG opendrift.models.basemodel.environment:775: Data missing for 99 elements. 21:46:22 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:22 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:22 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:22 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:22 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:22 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:22 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for x_sea_water_velocity for 99 elements 21:46:22 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for y_sea_water_velocity for 99 elements 21:46:22 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:22 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:22 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314095 (min) 0.313797 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.31811 (min) 0.361837 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:22 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:22 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:22 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:22 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:22 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:22 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:22 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:22 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:22 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:22 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:22 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.473020213054137e-12 degrees. 21:46:22 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:22 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:22 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314147 (min) 0.31411 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.314194 (min) 0.337469 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:22 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:22 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:22 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:22 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:22 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.468673960059496e-12 degrees. 21:46:22 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:22 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:22 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314143 (min) 0.314074 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.314293 (min) 0.337599 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:22 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:22 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:22 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.468673960059501e-12 degrees. 21:46:22 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:22 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:22 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314147 (min) 0.314048 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.313994 (min) 0.314136 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:22 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:22 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:22 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:22 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:22 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:22 DEBUG opendrift.models.basemodel:847: to be seeded: 0, already seeded 5000 21:46:22 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:22 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:05 - step 27 of 30 - 5000 active elements (0 deactivated) 21:46:22 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:22 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:22 DEBUG opendrift.models.basemodel:2014: -2.1699993718348532e-20 <- latitude -> 8.992602347631318e-06 21:46:22 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.7980790566570508e-05 21:46:22 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:22 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:22 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:22 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:22 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.468673960059511e-12 degrees. 21:46:22 DEBUG opendrift.readers.basereader.variables:823: Masking 99 elements outside coverage 21:46:22 DEBUG opendrift.models.basemodel.environment:775: Data missing for 99 elements. 21:46:22 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:22 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:22 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:22 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:22 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:22 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:22 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for x_sea_water_velocity for 99 elements 21:46:22 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for y_sea_water_velocity for 99 elements 21:46:22 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:22 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:22 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314104 (min) 0.313999 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.314105 (min) 0.314305 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:22 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:22 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:22 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:22 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:22 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:22 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:22 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:22 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:22 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:22 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:22 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.46215458056756e-12 degrees. 21:46:22 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:22 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:22 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314138 (min) 0.314114 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.315095 (min) 0.338801 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:22 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:22 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:22 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:22 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:22 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.459981454070245e-12 degrees. 21:46:22 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:22 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:22 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314148 (min) 0.314114 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.315098 (min) 0.338569 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:22 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:22 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:22 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.462154580567568e-12 degrees. 21:46:22 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:22 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:22 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313916 (min) 0.314136 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.318033 (min) 0.362382 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:22 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:22 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:22 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:22 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:22 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:22 DEBUG opendrift.models.basemodel:847: to be seeded: 0, already seeded 5000 21:46:22 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:22 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:04.500000 - step 28 of 30 - 5000 active elements (0 deactivated) 21:46:22 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:22 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:22 DEBUG opendrift.models.basemodel:2014: -2.8363083769359965e-20 <- latitude -> 8.992844526988948e-06 21:46:22 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.797815133451307e-05 21:46:22 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:22 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:22 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:22 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:22 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.451288948080983e-12 degrees. 21:46:22 DEBUG opendrift.readers.basereader.variables:823: Masking 99 elements outside coverage 21:46:22 DEBUG opendrift.models.basemodel.environment:775: Data missing for 99 elements. 21:46:22 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:22 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:22 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:22 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:22 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:22 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:22 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for x_sea_water_velocity for 99 elements 21:46:22 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for y_sea_water_velocity for 99 elements 21:46:22 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:22 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:22 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313902 (min) 0.314081 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.318096 (min) 0.361242 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:22 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:22 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:22 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:22 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:22 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:22 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:22 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:22 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:22 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:22 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:22 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.457808327572882e-12 degrees. 21:46:22 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:22 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:22 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314136 (min) 0.314016 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.322664 (min) 0.383962 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:22 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:22 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:22 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:22 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:22 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.453462074578244e-12 degrees. 21:46:22 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:22 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:22 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314139 (min) 0.313969 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.322494 (min) 0.384247 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:22 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:22 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:22 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.455635201075567e-12 degrees. 21:46:22 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:22 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:22 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314141 (min) 0.313994 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.327912 (min) 0.4049 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:22 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:22 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:22 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:22 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:22 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:22 DEBUG opendrift.models.basemodel:847: to be seeded: 0, already seeded 5000 21:46:22 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:22 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:04 - step 29 of 30 - 5000 active elements (0 deactivated) 21:46:22 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:22 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:22 DEBUG opendrift.models.basemodel:2014: -3.3216374310383065e-20 <- latitude -> 8.992997726331769e-06 21:46:22 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.798119718888132e-05 21:46:22 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:22 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:22 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:22 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:22 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.462154580567536e-12 degrees. 21:46:22 DEBUG opendrift.readers.basereader.variables:823: Masking 99 elements outside coverage 21:46:22 DEBUG opendrift.models.basemodel.environment:775: Data missing for 99 elements. 21:46:22 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:22 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:22 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:22 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:22 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:22 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:22 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for x_sea_water_velocity for 99 elements 21:46:22 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for y_sea_water_velocity for 99 elements 21:46:22 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:22 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:22 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314126 (min) 0.314111 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.328372 (min) 0.406093 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:22 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:22 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:22 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:22 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:22 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:22 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:22 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:22 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:22 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:22 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:22 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.464327707064877e-12 degrees. 21:46:22 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:22 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:22 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314094 (min) 0.313896 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.334704 (min) 0.425178 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:22 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:22 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:22 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:22 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:22 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.457808327572918e-12 degrees. 21:46:22 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:22 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:22 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314086 (min) 0.314071 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.334805 (min) 0.425054 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:22 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:22 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:22 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.45780832757227e-12 degrees. 21:46:22 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:22 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:22 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.313996 (min) 0.314014 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.340828 (min) 0.440999 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:22 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:22 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:22 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:22 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:22 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:22 DEBUG opendrift.models.basemodel:847: to be seeded: 0, already seeded 5000 21:46:22 DEBUG opendrift.models.basemodel:1994: ====================================================================== 21:46:22 INFO opendrift.models.basemodel:1995: 2000-01-01 00:00:03.500000 - step 30 of 30 - 5000 active elements (0 deactivated) 21:46:22 DEBUG opendrift.models.basemodel:2001: 0 elements scheduled. 21:46:22 DEBUG opendrift.models.basemodel:2003: ====================================================================== 21:46:22 DEBUG opendrift.models.basemodel:2014: -3.5285201763823216e-20 <- latitude -> 8.993091362802711e-06 21:46:22 DEBUG opendrift.models.basemodel:2019: 0.0 <- longitude -> 1.798298226736336e-05 21:46:22 DEBUG opendrift.models.basemodel:2022: z = 0.0 21:46:22 DEBUG opendrift.models.basemodel:2025: --------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:22 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:22 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:22 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.45128894808098e-12 degrees. 21:46:22 DEBUG opendrift.readers.basereader.variables:823: Masking 99 elements outside coverage 21:46:22 DEBUG opendrift.models.basemodel.environment:775: Data missing for 99 elements. 21:46:22 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:22 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:22 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:22 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:22 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:22 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:22 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for x_sea_water_velocity for 99 elements 21:46:22 DEBUG opendrift.models.basemodel.environment:799: Using fallback value 0 for y_sea_water_velocity for 99 elements 21:46:22 DEBUG opendrift.models.basemodel.environment:806: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity'] 21:46:22 DEBUG opendrift.models.basemodel.environment:813: Using fallback value 0 for ocean_vertical_diffusivity for all profiles 21:46:22 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314142 (min) 0.314026 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.340914 (min) 0.440244 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: x_wind: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: y_wind: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: upward_sea_water_velocity: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: ocean_vertical_diffusivity: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_significant_height: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_to_direction: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_swell_wave_significant_height: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_to_direction: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_mean_period: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_surface_wind_wave_significant_height: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: surface_downward_x_stress: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: surface_downward_y_stress: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: turbulent_kinetic_energy: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: turbulent_generic_length_scale: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: ocean_mixed_layer_thickness: 50 (min) 50 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:22 DEBUG opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.000000, mean: 0.000000, max: 0.000000 21:46:22 DEBUG opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind 21:46:22 DEBUG opendrift.models.physics_methods:1058: min: 1.256637, mean: 1.256637, max: 1.256637 21:46:22 DEBUG opendrift.models.physics_methods:998: Calculating wave period from wind, min: 1.256637, mean: 1.256637, max: 1.256637 21:46:22 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:22 DEBUG opendrift.models.basemodel:2065: Calling OceanDrift.update() 21:46:22 DEBUG opendrift.models.physics_methods:764: Runge-kutta, fetching half time-step later... 21:46:22 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:22 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:22 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:22 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.438250189097089e-12 degrees. 21:46:22 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:22 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:22 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314094 (min) 0.31395 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.346018 (min) 0.454143 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:22 DEBUG opendrift.models.physics_methods:770: Runge-kutta 4th order... 21:46:22 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:22 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:22 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:22 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.427384556610496e-12 degrees. 21:46:22 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:22 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:22 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314105 (min) 0.3141 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.345953 (min) 0.453924 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:616: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity'] 21:46:22 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:621: Calling reader double_gyre 21:46:22 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:22 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from double_gyre 21:46:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking x_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking y_sea_water_velocity for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:96: Rotating vectors between 0.0 and 8.425211430113178e-12 degrees. 21:46:22 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:22 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:22 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:915: x_sea_water_velocity: -0.314049 (min) 0.314138 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:915: y_sea_water_velocity: -0.350004 (min) 0.463323 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:22 DEBUG opendrift.models.physics_methods:902: No wind for wind-sheared ocean drift 21:46:22 DEBUG opendrift.models.physics_methods:930: No Stokes drift velocity available 21:46:22 DEBUG opendrift.models.oceandrift:405: No vertical advection for elements at surface 21:46:22 DEBUG opendrift.models.basemodel:1618: Horizontal diffusivity is 0, no random walk. 21:46:22 DEBUG opendrift.models.basemodel:2080: 5000 active elements (0 deactivated) 21:46:22 DEBUG opendrift.models.basemodel:2109: Cleaning up 21:46:22 DEBUG opendrift.models.basemodel.environment:615: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:616: Variable group ['land_binary_mask'] 21:46:22 DEBUG opendrift.models.basemodel.environment:617: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:621: Calling reader global_landmask 21:46:22 DEBUG opendrift.models.basemodel.environment:622: ---------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:638: Data needed for 5000 elements 21:46:22 DEBUG opendrift.readers.basereader.variables:746: Fetching variables from global_landmask 21:46:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before 21:46:22 DEBUG opendrift.readers.basereader.variables:627: Checking land_binary_mask for invalid values 21:46:22 DEBUG opendrift.readers.basereader.variables:782: Reader projection is latlon - rotation of vectors is not needed. 21:46:22 DEBUG opendrift.models.basemodel.environment:772: Obtained data for all elements. 21:46:22 DEBUG opendrift.models.basemodel.environment:785: --------------------------------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:786: Finished processing all variable groups 21:46:22 DEBUG opendrift.models.basemodel.environment:913: ------------ SUMMARY ------------- 21:46:22 DEBUG opendrift.models.basemodel.environment:915: land_binary_mask: 0 (min) 0 (max) 21:46:22 DEBUG opendrift.models.basemodel.environment:917: --------------------------------- 21:46:22 DEBUG opendrift.models.basemodel:1667: No elements to deactivate 21:46:22 DEBUG opendrift.models.basemodel:92: Changed mode from Mode.Run to Mode.Result .. GENERATED FROM PYTHON SOURCE LINES 33-35 These plots should reproduce Mov 12 on this page: https://shaddenlab.berkeley.edu/uploads/LCS-tutorial/examples.html .. GENERATED FROM PYTHON SOURCE LINES 35-44 .. code-block:: Python plt.subplot(2,1,1) plt.imshow(lcs['RLCS'][0,:,:], interpolation='nearest', cmap='jet', origin='lower') plt.colorbar() plt.title('Repelling LCS (forwards)') plt.subplot(2,1,2) plt.imshow(lcs['ALCS'][0,:,:], interpolation='nearest', cmap='jet', origin='lower') plt.colorbar() plt.title('Attracting LCS (backwards)') plt.show() .. image-sg:: /gallery/images/sphx_glr_example_double_gyre_LCS_001.png :alt: Repelling LCS (forwards), Attracting LCS (backwards) :srcset: /gallery/images/sphx_glr_example_double_gyre_LCS_001.png :class: sphx-glr-single-img .. rst-class:: sphx-glr-timing **Total running time of the script:** (0 minutes 12.131 seconds) .. _sphx_glr_download_gallery_example_double_gyre_LCS.py: .. only:: html .. container:: sphx-glr-footer sphx-glr-footer-example .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: example_double_gyre_LCS.ipynb ` .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: example_double_gyre_LCS.py ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_